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
- Host: GitHub
- URL: https://github.com/nullthefirst/express.js-server-starter
- Owner: nullthefirst
- Created: 2019-01-22T10:58:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T12:24:38.000Z (over 7 years ago)
- Last Synced: 2025-02-18T11:43:01.581Z (about 1 year ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 😀