DEV Community

Cover image for CRUD Operation,Relational database (MySql),Express
Sarmin Akter Dipty
Sarmin Akter Dipty

Posted on

CRUD Operation,Relational database (MySql),Express

Image description

CRUD Operation

CRUD Meaning: CRUD is an acronym that comes from the world of computer

programming and refers to the four functions that are considered necessary to

implement a persistent storage application: create, read, update and delete.

Relational database (MySql)

Enhance Your MySQL Databases For Free With Amazon Web Services.

Get Started Today. Flexible & Secure Open Source Relational Database

Services. Try It For Free For 12 Months. Sign Up For Free. Create a Free Account. Free Tier Details. Hands-On Experience.

Express

Express is a minimal and flexible Node.js web application framework

that provides a robust set of features for web and mobile applications.

APIs. With a myriad …
Mongoose

Let's face it, writing MongoDB validation, casting and business logic boilerplate is a drag. That's why we wrote Mongoose.
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:27017/test');

const Cat = mongoose.model('Cat', { name: String });

const kitty = new Cat({ name: 'Zildjian' });
kitty.save().then(() => console.log('meow'));

Top comments (0)