codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Member-only story

Writing a CRUD app with Node.js and MongoDB

Eslam Shoaala
codeburst
Published in
11 min readMar 27, 2018

Since you are here, I will assume you know the following:

1- A bit of JavaSript. (If not, you can have a look over the introductory JS guide from Mozilla )

2- Heard of Node.js and curious about seeing it in action.

Basics:-

CRUD Operations:

CRUD stands for Create, Read, Update and Delete. Which are the basic operations that a simple web app would be designed to achieve.

REST:

If you didn’t hear about REST before, you can read more about it here.

In this tutorial, we will be designing an API for a Products app.

Getting Started:-

1- Install Node.js from the Node.js website

2- I’ve created a directory called ‘ProductsApp’.

3- Inside the newly created directory, execute the following command in the terminal

npm init

The above commands results in creating a package.json file. The package.json file is used to manage the locally installed npm packages…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Eslam Shoaala

Software Engineer 👨‍💻 | Full-time learner 📚

Responses (78)

Write a response