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.
fl-backbone-rest
Advanced tools
By using BackboneREST on the server and BackboneORM's JSON rendering DSL, you can save time in defining JSON APIs.
Supported frameworks:
Backbone = require 'backbone'
RestController = require 'backbone-rest'
ensureLoggedIn = require 'connect-ensure-login'
customAuthorization = (req, res, next) ->
unless req.user.canAccessTask(req)
return res.status(401).send('you cannot access this task')
next()
new RestController(app, {
auth: [ensureLoggedIn('/login'), customAuthorization]
model_type: Task
route: '/tasks'
})
var Backbone = require('backbone');
var RestController = require('backbone-rest');
var ensureLoggedIn = require('connect-ensure-login');
var customAuthorization = function(req, res, next) {
if (!req.user.canAccessTask(req)) {
return res.status(401).send('you cannot access this task');
}
return next();
};
new RestController(app, {
auth: [ensureLoggedIn('/login'), customAuthorization],
model_type: Task,
route: '/tasks'
});
Please checkout the website for installation instructions, examples, documentation, and community!
To build the library for Node.js:
$ gulp build
Please run tests before submitting a pull request:
$ gulp test --quick
and eventually all tests:
$ npm test
You can run the following fine-grained tests to resolve problems with specific application frameworks
$ gulp test-express3
$ gulp test-express4
$ gulp test-restify
FAQs
A RESTful controller for BackboneORM
The npm package fl-backbone-rest receives a total of 0 weekly downloads. As such, fl-backbone-rest popularity was classified as not popular.
We found that fl-backbone-rest 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.