Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@naturalcycles/common-type
Advanced tools
Common Type interface and generator
Allows to generate JSON Schema from a set of Typescript files with Interfaces (also Types and Enums).
Also, to generate Typescript files from JSON schemas (reverse).
Status: experimental! Everything is subject to change!
Install common-type
as your devDependency:
yarn add -D @naturacycles/common-type
Define a commonType.cfg.js
in the root of you project:
module.exports = {
paths: ['src/types/*.ts'],
outputDir: 'src/schemas',
}
Config says to scan all *.ts
files in src/types
, parse them, generate JSON schemas, write them
into src/schemas
folder.
Typescript AST debugging: https://ts-ast-viewer.com/
string
, number
, boolean
someString
, 15, true
null
typeobject
, array
tuple
enum
(string
and number
values)|
), Intersections (&
), extends
@validationType
(e.g. integer
)p: Person
(where Person
is defined elsewhere, can be in another file)Partial
, Required
Record<A, B>
{ [name: string]: string }
)StringMap
(aka Dictionary)validationType
to override type
, e.g. @validationType integer
deprecated
, readOnly
, writeOnly
, default
pattern
, format
, minLength
, maxLength
multipleOf
, minimum
, exclusiveMinimum
, maximum
, exclusiveMaximum
additionalProperties
, minProperties
, maxProperties
minItems
, maxItems
, uniqueItems
if
, then
, else
, dependencies
, dependentRequired
,
dependentSchemas
Omit
, Pick
interface MyType<T> { current: T, future: T }
typeof
keyof
FAQs
Common Type interface and generator
We found that @naturalcycles/common-type demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.