
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.
Simple CLI to create project from predefined templates
npx dev-sr # for first time
npx dev-sr@latest # if already executed 'npx dev-sr' before
# or
npm i dev-sr
dev-sr
Install Locally:
Copy git repo then,
yarn build
npm link
electron.js with react,typescript,vite,tailwindCSStypescriptjavaFX with Mavennext.js with typescript, tailwindCSSCreate React App with typescript, tailwindCSS,vite,eslint,prettiernext-fullstack with typescript, tailwindCSS,vite,eslint,prettier,mantine UI ,prisma and next-auth
index.js
#!/usr/bin/env node
console.log( "Hello!" );
The first line that begins with #! is usually called a shebang. This is normally only used on Linux or UNIX operating systems to inform the system what type of script is included in the rest of the text file. However, this first line is also required for Node.js scripts to be installed and run properly on macOS and Windows.
package.json
Add a new key for bin with the following text.
{
"name": "cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {},
"keywords": [],
"bin": {
"hello": "index.js"
}
}
At this point, you can run the script just like any other Node.js application. Try entering the following from the command line.
node .
However, the goal of writing a script like this is to be able to run it from anywhere. You can do that with the npm install command.
npm install -g .
# or
npm link
You can now run your script by typing hello at the command line!
hello
You can list all globally installed Node.js modules using:
npm ls -g --depth=0.
To uninstall your script, run the following command.
npm uninstall -g cli
build before publish
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"prepublish": "yarn build"
},
Publish to npm:
yarn publish
FAQs
Simple CLI to create project from predefined templates
The npm package dev-sr receives a total of 9 weekly downloads. As such, dev-sr popularity was classified as not popular.
We found that dev-sr 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.