
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.