Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
crud.js easily install crud on your node server Based only on mongoDB
npm install crud.js
var bodyParser = require('body-parser');
var express = require('express');
var cors = require('cors');
var MongoClient = require('mongodb').MongoClient;
var crud = require('crud.js');
var port = 5000;
var app = module.exports = express();
var url = 'mongodb://localhost:27017/test';
app.use(cors());
app.use(bodyParser.json({limit: '1mb'}));
app.use(bodyParser.urlencoded({limit: '1mb', extended: false}));
MongoClient.connect(url, function(err, client) {
if (err) {
console.log(err);
} else {
console.log('successful connection on mongoDB ', url);
crud.init(client); // initialize the database on crud Object
}
});
app.all('/crud/:collection?', crud.crud);
app.listen(port, function() {
console.log('Server on http://localhost:' + port);
});
If you want to only manage specific collections you have to add it on lib/crud.js on the variable mappingCollection. It will be extended on the futurs realase.
FAQs
Crud module compatible with mongoDB
The npm package crud.js receives a total of 12 weekly downloads. As such, crud.js popularity was classified as not popular.
We found that crud.js 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.