
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@croatialu/query-templates
Advanced tools
useQuery code generation template based on swagger-typescript-api and @tanstack/query
pnpm i @croatialu/query-templates -D
generateApi({
input: resolve(process.cwd(), 'swagger.json'),
output: resolve(process.cwd(), '__generated__/api'),
name: 'api',
modular: true,
typePrefix: 'Type',
templates: resolve(process.cwd(), 'templates/modular'),
extraTemplates: [
// change the template file name
{
name: 'Queries',
// change the template file path
path: resolve(process.cwd(), 'node_modules/@croatialu/query-templates/dist/vue-query.ejs'),
},
],
})
# install vite plugin
pnpm i vite-plugin-swagger-typescript-api -D
// vite.config.ts
import { vitePluginSwaggerTypescriptApi } from 'vite-plugin-swagger-typescript-api'
export default defineConfig({
plugins: [
// ...
vitePluginSwaggerTypescriptApi({
// ...
extraTemplates: [
// change the template file name
{
name: 'Queries',
// change the template file path
path: resolve(process.cwd(), 'node_modules/@croatialu/query-templates/dist/vue-query.ejs'),
},
],
// ...
}),
// ...
],
})
| template | react-query | vue-query |
|---|---|---|
| default | ✅ react-query.ejs | ✅ vue-query.ejs |
| modular | ✅ react-query-modular.ejs | ✅ vue-query-modular.ejs |
default template
import { createApiQuery } from '../../__generated__/api-react-default/Queries'
import { Api } from '../../__generated__/api-react-default/api'
const api = new Api()
const apiQuery = createApiQuery(api)
const { data: _data } = apiQuery.pet.useFindPetsByStatus({
// ^? AxiosResponse<TypePet[], void>> | undefined
query: {
status: ['sold'],
// ^? ("available" | "pending" | "sold")[]
},
})
const petQueryUpdate = apiQuery.pet.useQueryUpdate()
petQueryUpdate(
apiQuery.pet.createFindPetsByStatusQueryKey({
query: {
status: ['sold'],
// ^? ("available" | "pending" | "sold")[]
},
}),
(oldValue) => {
// ^? AxiosResponse<TypePet[], void>
return oldValue
},
)
const mutation = apiQuery.store.usePlaceOrderMutation(
{
onSuccess(_data, { body: _body }) {
// ^? TypeOrder
// ^? AxiosResponse<TypeOrder>
},
},
)
mutation.mutateAsync({
body: {},
// ^? TypeOrder
})
modular template
import { createPetApiQuery, createStoreApiQuery, usePetApiQueryUpdate } from '../../__generated__/api-react-modular/Queries'
import { Store } from '../../__generated__/api-react-modular/Store'
import { Pet } from '../../__generated__/api-react-modular/Pet'
const petApi = new Pet()
const petQuery = createPetApiQuery(petApi)
const { data: _data } = petQuery.useFindPetsByStatus({
// ^? AxiosResponse<TypePet[], void> | undefined
query: {
status: ['sold'],
// ^? ("available" | "pending" | "sold")[]
},
})
const petQueryUpdate = usePetApiQueryUpdate()
petQueryUpdate(
petQuery.createFindPetsByStatusQueryKey({
query: {
status: ['sold'],
// ^? ("available" | "pending" | "sold")[]
},
}),
(oldValue) => {
// ^? AxiosResponse<TypePet[], void>
return oldValue
},
)
const storeApi = new Store()
const storeQuery = createStoreApiQuery(storeApi)
const mutation = storeQuery.usePlaceOrderMutation(
{
onSuccess(_data, { body: _body }) {
// ^? TypeOrder
// ^? AxiosResponse<TypeOrder, void>
},
},
)
mutation.mutateAsync({
body: {},
// ^? TypeOrder
})
pnpm i swagger-typescript-api -D
Download the template to your project
# default template
npx dgit --ref main croatialu/query-templates/templates/default ./templates
# or modular template
npx dgit --ref main croatialu/query-templates/templates/modular ./templates
// scripts/gen-api/index.mjs
import { resolve } from 'node:path'
import process from 'node:process'
import { generateApi } from 'swagger-typescript-api'
generateApi({
input: resolve(process.cwd(), 'swagger.json'),
output: resolve(process.cwd(), '__generated__/api'),
name: 'api',
modular: true,
typePrefix: 'Type',
templates: resolve(process.cwd(), 'templates/modular'),
extraTemplates: [
{
name: 'Queries',
path: resolve(process.cwd(), 'templates/modular/vue-query.ejs'),
},
],
})
node ./scripts/gen-api/index.mjs
pnpm install
pnpm start
FAQs
_description_
We found that @croatialu/query-templates demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.