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.
tst-defaults
Advanced tools
This project uses tst-reflect library for making your schemas expectable. For example, if you are parsing JSON with predefined schema but didn't want to check that some fields is not defined in object and want to just get default values.
This simple example shows how much problems we have when parsing JSON in TypeScript.
type JSONSchema = {
n: number
level: {
n2: number
bool: boolean
},
list: number[],
b: boolean
}
const parsedJson = JSON.parse('{}') as JSONSchema;
console.log(parsedJson.level.n2 + 1) // error, level is undefined
console.log(parsedJson.list.map(el => el + 1)) // error, list is undefined and has no method map
console.log(parsedJson.n + 1) // NaN
if (parsedJson.b) { // it may have error, because undefined is not a false
makeRiskCall()
}
if (paredJson.b === true) { // why we need this in TypeScript?? So much code...
makeRiskCall()
}
But you may say that we have a solution?
class JSONSchema {
public n: number = 0;
public level: {
n2: number
bool: boolean
} = {
n2: 0,
bool: false,
}
public list: number[] = [];
public b:boolean = false;
constructor(v:any) {
Object.assign(this, v);
}
}
const parsedJson = new JSONSchema(JSON.parse('{"level": {"n2": 1}}'));
console.log(parsedJson.n + 1) // ok
console.log(parsedJson.level.n2 + 1) // ok, result is 2
console.log(parsedJson.level.bool) // undefined
Not so bad, but still not good. And we have much code again.
import { mergeDefaults } from "tst-defaults";
type JSONSchema = {
n: number
level: {
n2: number
bool: boolean
},
list: number[],
b: boolean
}
const parsedJson = mergeDefaults<JSONSchema>(JSON.parse('{"level":{"bool":true}}'));
console.log(parsedJson.b === false) // ok
console.log(parsedJson.list.map(el => el + 1)) // ok
console.log(parsedJson.level.n2 + 1 === 1) // ok
console.log(parsedJson.level.bool == true) // ok
console.log(parsedJson.n + 1) // ok
Simple and fast.
yarn add --dev typescript ttypescript tst-reflect-transformer ts-node
yarn add tst-defaults
Setup your tsconfig.json
{
"ts-node": {
"compiler": "ttypescript"
},
"compilerOptions": {
...,
"plugins": [
{
"transform": "tst-reflect-transformer"
}
]
}
}
Setup package.json
{
"scripts": {
"start": "ts-node index.ts",
"build": "ttsc"
}
}
Some api documentation.
Saves type default value in storage for next time resolving.
import { useDefault, mergeDefaults } from 'tst-defaults';
type Duration = {
seconds: number;
};
type Schema = {
expires: Duration;
options: Object;
users: number;
};
useDefault<Duration>({ seconds: -1 });
const config = mergeDefaults<Schema>(JSON.parse('{}'));
console.log(config.expires); // { seconds: -1}
console.log(config.users); // 0
console.log(config.options); // {}
Merging default values into variable value. If variable is undefined, than it will create default value for it.
import { mergeDefaults } from "tst-defaults";
const jsonErrorIgnored = ():any => {}
type Schema = {
n: number
};
const config = mergeDefaults<Schema>(jsonErrorIgnored());
console.log(config.n) // 0, config is created as object
Returns default value for type.
import { getDefaultValue } from "tst-defaults";
console.log(getDefaultValue<string>()) // ""
enum Person {
UNKNOWN = 0,
PRIVATE = 1,
PUBLIC = 2,
}
console.log(getDefaultValue<string>()) // ""
console.log(getDefaultValue<boolean>()) // false
console.log(getDefaultValue<Object>()) // {}
console.log(getDefaultValue<number>()) // 0
console.log(getDefaultValue<Array<number[]>>()) // []
console.log(getDefaultValue<Function>()) // null
console.log(getDefaultValue<Person>() == Person.UNKNOWN) // true
Removes type default value from storage.
import { deleteDefault, useDefault, getDefaultValue } from "tst-defaults";
type Duration = {
seconds: number;
};
useDefault<Duration>({
seconds: -1
});
console.log(getDefaultValue<Duration>();) // {seconds: -1}
deleteDefault<Duration>();
console.log(getDefaultValue<Duration>();) // {}
FAQs
Get default values by Typescript type reflection
We found that tst-defaults 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
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.