
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Node Starter CLI is a tool that helps developers quickly set up a Node.js project with Express, Sequelize, and MySQL. It automatically generates a basic project structure, including an app.js file, routes, controllers, models, and services. This CLI is designed to make the process of creating new modules and linking them with routing efficient and easy.
app.route.js for easy routing.You can install Node Starter CLI globally using npm:
npm install -g ness-m
After installing the CLI, navigate to the directory where you want to create a new project and run:
ness-m init
This will:
app.js file that runs on port 3000.To add a new module to the project, run:
ness-m module-new <module-name>
Replace <module-name> with the name of the module you want to create. This command will:
app.route.js file.# Initialize a new Node.js project
ness-m init
# Create a new module called 'products'
ness-m module-new products
After initializing a project and creating a module, the file structure will look like this:
project-root/
│
├── app.js
├── app.route.js
├── example/
│ ├── example.controller.js
│ ├── example.model.js
│ ├── example.route.js
│ └── example.service.js
├── products/
│ ├── products.controller.js
│ ├── products.model.js
│ ├── products.route.js
│ └── products.service.js
└── config/
└── database.js
This project is licensed under the ISC License.
FAQs
A CLI for initiating Node.js projects.
We found that ness-m demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.