Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@coding-blocks/express-jsonapi-controller
Advanced tools
Generic Base Controller for express to generate JSON API response
Base controller class for express apps to create JSON:API endpoints for sequelize models
yarn add @coding-blocks/express-jsonapi-controller
// import your sequelize models
const DB = require('./models')
// import serializer for your model
const UserSerializer = require('./serializers/user')
// Get the controller
const { Controller } = require('express-jsonapi-controller')
const MyController = new Controller(
DB.User, // Model you want to create controller instance for
DB, // Models import for getting related models
UserSerializer
)
// Create your endpoints
router.get('/', MyController.handleQuery)
We use jsonapi-serializer for serializing models
/*
export a function with following arguments
@params [included] included models config
@params [type] serialize or deserialize
@params [config] meta config
*/
module.exports = (included, type, config) => {
return {
attributes: ['firstName', 'lastName'],
...config
};
};
Controller.handleQuery()
Controller.handleCreate()
Controller.handleQueryById()
Controller.handleUpdateById()
Controller.handleDeleteById()
FAQs
Generic Base Controller for express to generate JSON API response
The npm package @coding-blocks/express-jsonapi-controller receives a total of 0 weekly downloads. As such, @coding-blocks/express-jsonapi-controller popularity was classified as not popular.
We found that @coding-blocks/express-jsonapi-controller demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.