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.
base-create
Advanced tools
Utility for npm init create-* scripts.
Note: If you're creating an initializer for monorepos, try base-create-monorepo
.
Example for a script called create-custom-babel
(run with npm init custom-babel my-app
), you could do:
#!/usr/bin/env node
const create = require("base-create");
// `name` will be the app name passed on CLI like "my-app"
const { name } = create({
// optional deps to install
dependencies: ["@babel/runtime"],
// optional dev deps to install
devDependencies: ["@babel/core", "@babel/plugin-transform-runtime"],
// mostly a shallow merge into a base `package.json` from `npm init`
package: {
main: "dist/main.js",
// these will merge with scripts like `test` from `npm init`
scripts: {
build: "babel src --out-dir dist",
"build:watch": "npm run build -- --watch",
},
},
// optional files to create
files: [
"src/index.js",
{
path: "src/hello.js",
contents: 'alert("hi")',
},
{
path: "README.md",
// `contents` can be a function
contents: ({ nameWithScope, nameWithoutScope, dirName }) =>
"# ${nameWithScope}",
},
],
// optional list of shell commands to be run
commands: [],
// optional global config options
config: {
// optional package scope to for main package and any sub-packages for monorepos
scope: "@my-org",
},
// optionally skip default gitignore creation
skipGitignore: false,
// optionally skip default readme creation
skipReadme: false,
// optionally specify sub-packages for monorepos - see the `base-create-monorepo` package to ease this
packages: [
{
name: "my-first-subpackage",
package: {
scripts: {
start: "node dist/first.js",
},
files: ["src/first.js"],
},
// ...supports most of the root-level options
},
{
name: "my-second-subpackage",
package: {
scripts: {
start: "node dist/second.js",
},
files: ["src/second.js"],
},
// ...supports most of the root-level options
},
// ...and more sub-packages if you want
],
});
FAQs
Utility for npm init create-* scripts.
The npm package base-create receives a total of 31 weekly downloads. As such, base-create popularity was classified as not popular.
We found that base-create 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.