Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faizahmedfarooqui/nodets
A Web App built with Express & Typescript
https://github.com/faizahmedfarooqui/nodets
Last synced: 28 days ago
JSON representation
A Web App built with Express & Typescript
- Host: GitHub
- URL: https://github.com/faizahmedfarooqui/nodets
- Owner: faizahmedfarooqui
- License: mit
- Created: 2018-08-21T11:02:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-18T09:47:18.000Z (over 3 years ago)
- Last Synced: 2024-05-01T17:24:18.028Z (6 months ago)
- Language: TypeScript
- Homepage: https://faizahmedfarooqui.github.io/nodets
- Size: 843 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Description
A boilerplate for [Node.js](https://nodejs.org/en) App.
* This boilerplate is built using [Express.js](https://expressjs.com/) web framework, and have used [Typescript Lang](https://www.typescriptlang.org/) for writing the app's logic.
* It uses the Node.js's [Cluster API](https://nodejs.org/api/cluster.html), this helps us to take advantage of multi-core systems & to handle the load.
* For storing configuration into the `process.env`, [DOTENV](https://github.com/motdotla/dotenv) for Node.js is used.
* For Database, this repo contains the use of [Mongoose](https://mongoosejs.com/) (ie. [MongoDB](https://www.mongodb.com/) object modeling for [Node.js](https://nodejs.org/en/)).
* For Cache, this repo contains the use of [memory-cache](https://github.com/ptarjan/node-cache#readme) (ie. A simple in-memory cache for node.js).
* For Routing, this repo contains the use of [express-router](https://expressjs.com/en/guide/routing.html) & have distributed Routes into two files ie. Web Routes & API Routes. The web routes are using [CSRF Token](https://github.com/krakenjs/lusca) while the API routes are using [JSON Web Token](https://github.com/auth0/express-jwt).
* For Strategies Authentication, this repo contains the use of the [Passport.js](https://github.com/jaredhanson/passport). Passport.js is compatible with Express.js and is authentication middleware for Node.js.
* For Logging, this repo uses custom Log class built in middlewares folder, and it creates logs file by date & removes the log files after 'X' days (You can define that 'X' in .env file).
* For Exception handling, this repo contains two classes ie. `Handler` & `NativeEvent`
* To Log, use `Log.info('Your message should go here!')`. Other options for logging are `Log.warn`, `Log.error` & `Log.custom`.
* For views, this repo contains the use of [PUG](https://github.com/pugjs/pug) template engine.
* For background queues, this repo contains the use of [Kue](https://github.com/Automattic/kue). For more detail on the same, please review the [Queue](https://github.com/faizahmedfarooqui/nodets/blob/master/src/providers/Queue.ts) class# Contents
* [Global Requisites](#global-requisites)
* [App Structure](#app-structure)
* [Install, Configure & Run](#install-configure--run)
* [List of Routes](#list-of-routes)
* [Screens](#screens)# Global Requisites
* node (>= 10.5.0)
* tsc (>= 3.0.1)
* typescript (>= 3.0.1)
* mongoose (>= 3.6.2)# App Structure
> _Note: I am mentioning only files/folders which you need to configure if required_
```bash
├── dist
├── public
├── src
│ ├── controllers
│ │ ├── Api
│ │ │ ├── Auth
│ │ │ │ ├── Login.ts
│ │ │ │ ├── RefreshToken.ts
│ │ │ │ └── Register.ts
│ │ │ └── Home.ts
│ │ ├── Auth
│ │ │ ├── Login.ts
│ │ │ ├── Logout.ts
│ │ │ ├── Register.ts
│ │ │ └── Social.ts
│ │ ├── Account.ts
│ │ └── Home.ts
│ ├── exception
│ │ ├── Handler.ts
│ │ └── NativeEvent.ts
│ ├── interfaces
│ │ ├── models
│ │ │ └── user.ts
│ │ └── vendors
│ │ ├── index.ts
│ │ ├── INext.ts
│ │ ├── IRequest.ts
│ │ └── IResponse.ts
│ ├── middlewares
│ │ ├── CORS.ts
│ │ ├── CsrfToken.ts
│ │ ├── Http.ts
│ │ ├── Kernel.ts
│ │ ├── Log.ts
│ │ ├── Statics.ts
│ │ ├── StatusMonitor.ts
│ │ └── View.ts
│ ├── models
│ │ └── User.ts
│ ├── providers
│ │ ├── App.ts
│ │ ├── Cache.ts
│ │ ├── Database.ts
│ │ ├── Express.ts
│ │ ├── Locals.ts
│ │ ├── Passport.ts
│ │ ├── Queue.ts
│ │ └── Routes.ts
│ ├── routes
│ │ ├── Api.ts
│ │ └── Web.ts
│ ├── services
│ │ └── strategies
│ │ ├── Google.ts
│ │ ├── Local.ts
│ │ └── Twitter.ts
│ └── index.ts
├── views
│ ├── includes
│ ├── modals
│ ├── pages
│ ├── partials
│ ├── static
│ │ ├── css/*.css
│ │ └── js/*.js
│ └── layout.pug
├── .env
├── .gitignore
├── nodemon.json
├── package.json
├── README.md
├── tsconfig.json
└── tslint.json
```# Install, Configure & Run
Below mentioned are the steps to install, configure & run in your platform/distributions.
> Note: It is preassumed here that you have mongoose running in background & you have created the database.
```bash
# Clone the repo.
git clone https://github.com/faizahmedfarooqui/nodets.git;# Goto the cloned project folder.
cd nodets;# Install NPM dependencies.
# Note: You can review the list of dependencies from the below link.
# https://github.com/faizahmedfarooqui/nodets/network/dependencies
npm install;# Edit your DotEnv file using any editor of your choice.
# Please Note: You should add all the configurations details
# or else default values will be used!
vim .env;# Run the app
npm run dev;
```# List of Routes
```sh
# Web Routes:+--------+-------------------------+
Method | URI
+--------+-------------------------+
GET | /
GET | /signup
POST | /signup
GET | /login
POST | /login
GET | /logout
GET | /account
GET | /auth/google
GET | /auth/google/callback
GET | /auth/twitter
GET | /auth/twitter/callback
GET | /status-monitor
+--------+-------------------------+# API Routes:
+--------+-------------------------+
Method | URI
+--------+-------------------------+
POST | /api
POST | /api/auth/login
POST | /api/auth/register
POST | /api/auth/refresh-token
+--------+-------------------------+
```# Screens
### Home / Landing Page
![Home / Landing Page](/screens/Home.png)
> Note: This page has sub-sections, like about-us, contact-us & portfolio### LogIn Page
![LogIn Page](/screens/Login.png)
> Note: LogIn with Providers### SignUp Page
![SignUp Page](/screens/SignUp.png)
> Note: SignUp with Providers### Dashboard Page
![Dashboard Page](/screens/Dashboard.png)
### With Dropdown Menu
![Dashboard Page with Dropdown Menu](/screens/DashboardWithDropdown.png)
### Page Not Found Page
![Page Not Found Page](/screens/PageNotFound.png)
> Note: In case, the requested URI does not exist, app shows this page### Under Maintenance Page
![Under Maintenance Page](/screens/UnderMaintenance.png)
> Note: In case, a error is generated so instead of plain error we show under maintenance page