Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@arcticzeroo/typeguard
Advanced tools
A collection of TS typeguards to check duck types easily.
import { isDuckType, isDuckTypeArray } from '@arcticzeroo/typeguard';
interface IUser {
userName: string;
coins: number;
}
const getUserData = async (id: string): Promise<IUser> => {
const response = await fetch(`https://myapi/users/${id}`);
if (!response.ok) {
throw new Error('Could not get user');
}
const json = await response.json();
// I can't use json.userName or json.coins yet!
if (!isDuckType<IUser>(json, {
userName: 'string',
coins: 'number'
})) {
throw new Error('Response is not a user');
}
// TypeScript now knows that my type is an IUser,
// so I can use json.userName or json.coins, or just return it
return json;
};
const getAllUsers = async (): Promise<IUserResponse[]> => {
const response = await fetch(`https://myapi/users/`);
if (!response.ok) {
throw new Error('Could not get users');
}
const json = await response.json();
if (!isDuckTypeArray<IUser>(json, {
userName: 'string',
coins: 'number'
})) {
throw new Error('Response is not an array of users');
}
// TypeScript now knows that my type is an IUser[],
return json;
};
FAQs
A collection of TypeScript typeguards
We found that @arcticzeroo/typeguard 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.