Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kishan-aghera/node-crud-api


https://github.com/kishan-aghera/node-crud-api

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# Node CRUD API

Simple CRUD API for learning Node.js.

---

## Requirements

For development, you will only need Node.js and a node global package, installed in your environement.

### Node

- #### Node installation on Windows

Just go on [official Node.js website](https://nodejs.org/) and download the installer.
Also, be sure to have `git` available in your PATH, `npm` might need it (You can find git [here](https://git-scm.com/)).

- #### Node installation on Ubuntu

You can install nodejs and npm easily with apt install, just run the following commands.

```bash
sudo apt install nodejs
sudo apt install npm
```

- #### Other Operating Systems

You can find more information about the installation on the [official Node.js website](https://nodejs.org/) and the [official NPM website](https://npmjs.org/).

If the installation was successful, you should be able to run the following command.

```bash
node --version
v16.14.0
```

```bash
npm --version
8.5.2
```

If you need to update `npm`, you can make it using `npm`! Cool right? After running the following command, just open again the command line and be happy.

```bash
npm install npm -g
```

---

## Install

```bash
git clone https://github.com/kishan-aghera/node-crud-api.git
cd node-crud-api
npm install
```