Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
tyranid-tdgen
Advanced tools
Generate typescript .d.ts
files from your tyranid schema definitions. The generated type definition files extend tyranids own type definitions through declaration merging
Pass your model directory to tyranid-tdgen
npm install -g tyranid-tdgen
tyranid-tdgen "./dist/example/models/*.js" > isomorphic.d.ts
For help...
tyranid-tdgen --help
(see /example
for the code and output shown below)
Say we have a user tyranid collection, User.ts
...
import { Tyr } from 'tyranid';
export default new Tyr.Collection({
id: 'u00',
name: 'user',
dbName: 'users',
fields: {
_id: { is: 'mongoid' },
name: { is: 'string' },
email: { is: 'email' },
teamId: { is: 'mongoid' },
skills: {
is: 'array',
of: {
is: 'object',
fields: {
years: { is: 'integer' },
name: { is: 'string' }
}
}
}
}
});
In a separate typescript/javascript file, after initializing tyranid, we can generate a type definition file like so...
import { Tyr } from 'tyranid';
import * as fs from 'fs';
import * as mongodb from 'mongodb';
import * as path from 'path';
import { generateFile } from '../';
generate().catch(console.error);
async function generate() {
const db = await mongodb.MongoClient.connect(
'mongodb://127.0.0.1:27017/tyranid_tdgen'
);
await Tyr.config({
db: db,
validate: [
{
dir: path.resolve(__dirname, `./models/`),
fileMatch: '.*.ts'
}
]
});
await Promise.all([
generateFile(
Tyr.collections,
path.resolve(__dirname, './output/isomorphic.d.ts')
),
generateFile(
Tyr.collections,
path.resolve(__dirname, './output/server.d.ts'),
{ type: 'server' }
),
generateFile(
Tyr.collections,
path.resolve(__dirname, './output/client.d.ts'),
{ type: 'client' }
)
]);
process.exit(0);
}
See ./example/output
for the resulting generated type definition files.
FAQs
Generate type definition files from tyranid schemas
We found that tyranid-tdgen demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.