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.
create-raml
Advanced tools
v3.2.3
npm i -S create-raml
var express = require('express');
var Raml = require('create-raml');
var app = express();
var raml = new Raml({ express: app });
// regular app express workflow ( app.get, app.post, app.listen... etc )
curl 127.0.0.1:3000/api.raml
var express = require('express');
var Raml = require('create-raml');
var app = express();
var raml = new Raml({ express: app });
app.get('/movies', function (req, res) { res.send('List of all movies'); });
app.post('/movies', function (req, res) { res.send('Add new movie'); });
app.get('/movies/:id', function (req, res) { res.send('Get movie by id'); });
app.delete('/movies/:id', function (req, res) { res.send('Delete movie by id'); });
app.listen(3000, function () { console.log('Example app listening on port 3000!'); });
curl 127.0.0.1:3000/api.raml
#%RAML 1.0
title:
version:
types:
/api.raml:
get:
description: get /api.raml
/movies:
get:
description: get /movies
post:
description: post /movies
/{id}:
get:
description: get /movies/:id
delete:
description: delete /movies/:id
var Raml = require('create-raml');
var raml = new Raml({
title: 'Testing',
baseUri: 'http://localhost:3000',
version: 'v1',
});
raml.type('books', {
name: { type: 'string', required: true },
numberOfPages: { type: 'integer' },
});
raml.methods('books', 'get', {
description: 'Get information about all books',
responses: {
200: { 'application/json': [{ name: 'one', author: { name: 'Art' } }] },
404: { 'application/json': { code: '120', message: 'Books not found' } },
},
});
raml.generate(function (err, ramlText) {
console.log(ramlText);
});
#%RAML 1.0
title: Testing
baseUri: http://localhost:3000
version: v1
types:
books: |
{
"name": {
"type": "string",
"required": true
},
"numberOfPages": {
"type": "integer"
}
}
/books:
get:
description: Get information about all books
responses:
200:
body:
application/json:
example: |
[
{
"name": "one",
"author": {
"name": "Art"
}
}
]
404:
body:
application/json:
example: |
{
"code": "120",
"message": "Books not found"
}
var raml = new Raml(options);
npm test
Dimitry, 2@ivanoff.org.ua
curl -A cv ivanoff.org.ua
FAQs
Create RAML
The npm package create-raml receives a total of 9 weekly downloads. As such, create-raml popularity was classified as not popular.
We found that create-raml 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.