This package generates easy-to-use and type-safe frontend API clients from OpenAPI specifications.
Features:
- TypeScript schema generator — generates full TypeScript types from OpenAPI 3 / Swagger 2 specs
- Fetch client — type-safe fetch-based HTTP client with interceptors
- SSE streaming — first-class Server-Sent Events support for AI/streaming APIs
- React hooks —
useStreamChatfor AI chat,useRequestfor data fetching - Miniapp client — WeChat miniapp client (
wx.request)
npm i @doremijs/o2t
# pnpm i @doremijs/o2t
# yarn add @doremijs/o2t
# bun i @doremijs/o2t- Run
npx o2t initto create ao2t.config.mjsconfiguration file, or create it manually:
import { defineConfig } from '@doremijs/o2t'
export default defineConfig({
specUrl: 'https://petstore.swagger.io/v2/swagger.json'
})- Run the generator:
npx o2t generate typescript-
The generated code will be in the
src/apidirectory. -
Create
src/api/index.tsand set up the client:
import { createFetchClient } from '@doremijs/o2t/client'
import type { OpenAPIs } from './schema'
export const client = createFetchClient<OpenAPIs>({
requestInterceptor(request) {
const token = localStorage.getItem('access_token')
if (!request.url.startsWith('/api/auth') && token) {
request.init.headers.Authorization = `Bearer ${token}`
}
return request
},
responseInterceptor(request, response) {
return response
},
errorHandler(request, response, error) {
console.error(request, response, error)
}
})If you get an import error, set compilerOptions.moduleResolution to bundler and compilerOptions.module to ESNext in your tsconfig.json.
- Make type-safe requests:
const result = await client.get('/pet/{petId}', {
params: { petId: 1 },
query: { status: 'available' }
})
if (!result.error) {
console.log(result.data) // Fully typed!
}The package includes a production-grade SSE (Server-Sent Events) streaming engine, designed for AI chat APIs and real-time data.
import { createFetchClient } from '@doremijs/o2t/client'
import { processStream } from '@doremijs/o2t/client/stream'
const client = createFetchClient()
// 1. Make a request (streaming endpoint)
const result = await client.post('/api/chat', {
body: { stream: true, model: 'gpt-4', messages: [...] }
})
// 2. Process the SSE stream
if (!result.error && result.response) {
await processStream(result.response, {
onData: (chunk) => console.log('Received:', chunk),
onComplete: () => console.log('Stream complete')
})
}| API | Style | When to use |
|---|---|---|
processStream(response, callbacks) |
Callback | Simplest — just need onData/onError/onComplete |
iterateStream(response) |
Async iterator | Need fine-grained control with for await...of |
accumulateStream(response) |
Collect all | Short streams where you want all results at once |
import { useStreamChat } from '@doremijs/o2t/client/react'
function Chat() {
const { messages, isLoading, send, abort } = useStreamChat({
service: async (params, signal) => {
const res = await fetch('/api/chat', {
method: 'POST',
body: JSON.stringify(params),
signal
})
return res
},
localTransform: (params) => ({
role: 'user',
content: params.message
}),
streamTransform: ({ chunks }) => ({
role: 'assistant',
content: chunks.map(c => c?.choices?.[0]?.delta?.content || '').join('')
})
})
return (
<div>
{messages.map(msg => <div key={msg.id}>{msg.data.content}</div>)}
<button onClick={() => send({ message: 'Hello' })}>Send</button>
{isLoading && <button onClick={abort}>Stop</button>}
</div>
)
}The stream engine handles all common SSE variants out of the box, but you can customize:
// Skip non-JSON events (like [DONE] markers silently)
for await (const event of iterateStream(response, {
nonJSONBehavior: 'skip',
})) { }
// Custom termination markers
await processStream(response, callbacks, {
terminationMarkers: ['[END]', '[DONE]']
})
// Disable termination detection
const chunks = await accumulateStream(response, {
terminationMarkers: false
})The parser is fully compliant with the W3C SSE specification and tested against:
- ✅ Standard SSE (
data: ...\n\n) - ✅ CRLF line endings (
\r\n\r\n) - ✅ Multiple
data:lines per event - ✅
event:/id:/retry:fields - ✅ Comment lines (
: ...) - ✅ UTF-8 BOM
- ✅ OpenAI
[DONE]termination marker - ✅ Non-JSON data handling
- ✅ Error events (
event: error) - ✅ Cross-chunk boundaries (streaming split across multiple reads)
The defineConfig function accepts:
| Option | Type | Default | Description |
|---|---|---|---|
specUrl |
string |
— | OpenAPI specification URL |
isVersion2 |
boolean |
auto | Force Swagger 2.0 mode |
outputDir |
string |
"src/api" |
Output directory for generated code |
tempFilePath |
string |
"node_modules/.o2t/openapi.json" |
Temporary file for downloaded spec |
preferUnknownType |
'any' | 'unknown' |
"any" |
Type for unknown schemas |
customHeaders |
Record<string, string> |
— | Custom headers for spec download |
basicAuth |
{ username, password } |
— | Basic auth credentials |
bun installCreate o2t.config.mjs:
import { defineConfig } from './src'
export default defineConfig({
specUrl: 'https://generator.swagger.io/api/swagger.json'
})Run in development mode:
bun dev generate typescriptbun test # All tests
bun test:stream # SSE stream tests
bun test:fetch # Fetch client tests
bun test:react # React hooks tests
bun test:petstore # PetStore integration testsAn example React + Vite app is available in the example/ directory:
cd example
bun install
bun devIncludes:
- AI chat with streaming responses (ChatPage)
- PetStore API demo (PetStorePage)
- Full type-safe integration
This repository includes a GitHub Actions workflow at .github/workflows/npm-publish.yml.
It will publish the package to npm when all of the following are true:
- code is pushed to the
mainbranch package.jsonor.github/workflows/npm-publish.ymlchanged in that push- the
versionfield inpackage.jsonis different from the version currently published on npm - CI tests and build pass
The workflow uses npm trusted publishing with OIDC and runs:
npm publish --provenance --access publicTo keep release publishing deterministic, CI uses the local test suite from npm run test:ci. The live PetStore integration tests remain available through npm run test:petstore.
GitHub Actions trusted publishing also requires one manual setup step on npm:
- Open the package page on npm
- Go to
Settings->Trusted Publisher - Choose
GitHub Actions - Configure:
- owner:
doremijs - repository:
openapi-generator - workflow file:
npm-publish.yml - branch:
main
- owner:
After that, as long as the version in package.json is newer than the version currently published on npm, pushes to main that touch package.json or the workflow file can trigger an authenticated publish without storing an npm access token in GitHub secrets.
LGPL-3.0-or-later