
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
code-skeleton
Advanced tools
A tool for creating templates that can be versioned and updated alongside your code.
In order to use this tool, you must first create a skeleton module:
import { copy, pkg, json, type Skeleton } from "code-skeleton";
export default async function (root: string, variables: object) {
const skeleton: Skeleton = {
"targetFile": copy(join(__dirname, "content", "sourceFile")),
"tsconfig.json": json({
set: {
"extends": "@tsconfig/node18",
},
}),
"package.json": pkg({
scripts: {
test: "tap",
},
}),
};
return skeleton;
}
Make sure to add code-skeleton as a peer dependency of your skeleton:
> npm install --save-peer code-skeleton
When applied the above skeleton would copy sourceFile to targetFile, ensure that the "extends" key of tsconfig.json is equal to the value "@tsconfig/node18", and ensure that the test script in package.json is set to "tap".
The skeleton must be published to npm. To consume the skeleton:
# --save-exact facilitates keeping your template current via dependabot and is highly recommended
> npm i -D --save-exact your-skeleton-module
> npm pkg set skeleton.module=your-skeleton-module
> npx code-skeleton apply
FAQs
a framework for creating versioned project templates
We found that code-skeleton 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.