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.
node-boiler
Advanced tools
Node boiler is a library that automatically writes boiler plate code which otherwise does not come out of the box with node.js. This tool comes in handy while make REST APIs.
:computer: Generate all your boiler plate code for writing REST APIs with just one command.
This Node.js module is available through npm registry
Install the module globally by running the following command
$ npm i -g node-boiler
Note: Not installing it gloabally may cause it to malfunction. We're working on the fix.
boil.yml
file in your project directory specifying your configuration. Scroll below to see the semantic rules for writing your own boil.yml
example
boil.yml
models:
- 'users'
- 'admins'
- 'players'
controllers:
authController:
- 'login'
- 'signUp'
playerController:
- 'pass'
- 'shoot'
views:
- 'home'
- 'profile'
routes:
admin-routes:
post:
- '/delete'
- '/another-route'
get:
- '/get-here'
- '/lol'
player-routes:
get:
- '/shoot'
- '/kick'
$ cd yourprojectdirectory
$ nodeboil
--node_modules
|--your modules
--models
|--users.js
|--admins.js
|--players.js
--views
|--home.html
|--profile.html
--controllers
|--authController.js
|--playerController.js
--routes
|--admin-routes.js
|--player-routes.js
--boil.yml
--package.json
-- <entry file>.js
Note: The generated files will come with all basic boiler plate code. Try it out!
This file must be present in the root directory of your project. The syntax for writing boil.yml
is as follows
models:
- '<Model Name 1>'
- '<Model Name 2>'
...
routes
- <name of route file 1>
- <route method>
- '<URL endpoint 1>'
- '<URL endpoint 2>'
...
...
- <name of route file 2>
- <route method>
- '<URL endpoint 1>'
- '<URL endpoint 2>'
...
...
...
controllers:
- <Name of controller 1>
- '<Function name 1>'
- '<Function name 2>'
...
- <Name of controller 2>
'<Function name 1>'
'<Function name 2>'
...
...
views:
- '<Name of html file 1>'
- '<Name od html file 2>'
...
Once done, execute the command nodeboil
in the root of the project directory.
Note: Renaming the file to anything other than
boil.yml
will not work
Example of a generated model file (admin.js) under the generated directory /models
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const adminsSchema = new Schema({}); //Write your schema here
const admins = mongoose.model('admins', adminsSchema);
module.exports = admins;
Example of a generates routes file (admin-routes.js) under the generated directory /routes
const router = require('express').Router;
router.post('/delete', (req, res) => {}); // Add your route logic here
router.post('/another-route', (req, res) => {}); // Add your route logic here
router.get('/get-here', (req, res) => {}); // Add your route logic here
router.get('/lol', (req, res) => {}); // Add your route logic here
module.exports = router;
Example of a generated controller file (authController.js) under the generated directory /controllers
module.exports = {
login: function(){},// Add function logic here
signUp: function(){},// Add function logic here
}
To run the test suite, execute the following command :
$ npm install
$ npm run test
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
We are always looking forward to new ideas and meaningful contributions.
FAQs
Node boiler is a library that automatically writes boiler plate code which otherwise does not come out of the box with node.js. This tool comes in handy while make REST APIs.
The npm package node-boiler receives a total of 15 weekly downloads. As such, node-boiler popularity was classified as not popular.
We found that node-boiler 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.