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

https://github.com/nullthefirst/express.js-server-starter

This is a simple node.js server starter
https://github.com/nullthefirst/express.js-server-starter

Last synced: about 1 year ago
JSON representation

This is a simple node.js server starter

Awesome Lists containing this project

README

          

# express.js server starter

This is a super simple node.js server starter

- - -

It uses **Express.js** which according to the official site, is an unopinionated, minimalist web framework for **Node.js**

Express.js can be a good choice when working:
* with Web Applications
* with APIs (including creation)
* for optimal Performance with Node.js
* with Frameworks (eg. MEAN, MERN stacks _etc_)

> Visit expressjs.com for more information

and Nodemon which according to the official site, is a utility that will monitor for any changes in your source and automatically restart your server.

> Visit nodemon.io for more information

- - -

### [Usage Instructions]()

1. Clone this repository unto your local machine. Do this by entering the following command into your terminal:

```bash
git clone https://github.com/Usheninte/express.js-server-starter.git
```


2. Run the following command to install the dependencies in the **package.json**:

###### for NPM users
```bash
npm install
```

###### for YARN users
```bash
yarn
```


3. Run the following command to start the Node.js server:

###### for NPM users
```bash
npm start
```

###### for YARN users
```bash
yarn start
```


4. Use the following key combination to switch off the Node.js server:

```
CTRL + C
```

- - -

#### This is a perfect tool-set to start off development 😀