
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
create-ts-json-schema
Advanced tools
generate json-schema from typescript source code and management it
automatically generate json-schema from TypeScript source code and management it!
create-ts-json-schema is tiny cli utility that automatically generate json-schema from TypeScript source code and management generated json-schema. If you use fastify.js that uses json-schema to validate request and reply. But managing a large number of json-schema takes a lot of effort. create-ts-json-schema help that work.
npm install create-ts-json-schema --save-dev
# generate json-schema and create database (if exist)
ctjs add
# delete json-schema from database
ctjs del
# truncate database
ctjs truncate
# regenerate all json-schema in database
Example for fastify
import fastify from 'fastify';
import fs from 'fs';
const server = fastify();
const db = JSON.parse((await fs.promises.readFile('db.json')).toString());
Object.value(db).forEach((record) => server.addSchema(JSON.parse(record.schema)));
server.get(
'/pokemon/:name',
{
schema: {
tags: ['Pokemon'],
summary: 'Pokemon detail information using by name',
querystring: { $ref: 'IReqPokeDetailQuerystring' }, // You can access local reference for fastify schema store
params: { $ref: 'IReqPokeDetailParams' }, // You can access local reference for fastify schema store
response: {
200: { $ref: 'IPokemonDto' }, // You can access local reference for fastify schema store
},
},
},
(req) => {
/* your handler code */
},
);
command | alias | description |
---|---|---|
add | a | add or update json-schema to database file |
del | d | delete json-schema from database file |
refresh | r | regenerate all json-schema in database file |
truncate | t | reset database file |
option | alias | description |
---|---|---|
project | p | tsconfig.json path |
config | c | configuration file path |
output | o | database file path |
skip-error | skip compile error on source file | |
types | TypeScript type of source code. You can use interface, type alias, enum, class. | |
files | TypeScript source code file path | |
format | generated json-schema save format: json, string, base64 |
option | alias | description |
---|---|---|
project | p | tsconfig.json path |
config | c | configuration file path |
output | o | database file path |
skip-error | skip compile error on source file | |
types | TypeScript type of source code. You can use interface, type alias, enum, class. | |
files | TypeScript source code file path |
option | alias | description |
---|---|---|
project | p | tsconfig.json path |
config | c | configuration file path |
output | o | database file path |
skip-error | skip compile error on source file | |
format | generated json-schema save format: json, string, base64 |
option | alias | description |
---|---|---|
project | p | tsconfig.json path |
config | c | configuration file path |
output | o | database file path |
FAQs
generate json-schema from typescript source code and management it
We found that create-ts-json-schema 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.