An easiest web app template on top of nest, TypeORM, Next.js (v9) and Material UI (v4).
- Cross platform - Mac, Linux and Windows
- Database synchronization with entities - powered by TypeORM
- Server Side Rendering - powered by Next.js
- API server - powered by nest
- User authentication - powered by Passport
- Material UI design
- Environment variables using dotenv
- Hot reloading for the developer experience :)
- Lang
- TypeScript - Javascript that scales
- Database
- PostgreSQL - The World's Most Advanced Open Source Relational Database
- ORM (Object-relational mapping)
- TypeORM - ORM for TypeScript and JavaScript (ES7, ES6, ES5)
- Server
- Environment variables
- dotenv - Loads environment variables from .env for nodejs projects
- dotenv-webpack - A secure webpack plugin that supports dotenv and other environment variables and only exposes what you choose and use.
- User authentication
- Passport - Simple, unobtrusive authentication for Node.js
- UI framework
- React - A JavaScript library for building user interfaces
- Next.js - The React Framework
- Material UI - React components that implement Google's Material Design.
Ark uses PostgreSQL.
# install postgresql
$ brew install postgresql
# if you want to start postgresql in startup, try do this
$ brew services start postgresql
# [MUST] create user "arkuser" with password "arkark"
$ createuser -P arkuser
# [MUST] create database "arkdb" owened by "arkuser"
$ createdb arkdb -O arkuser
Because Ark uses node.bcrypt.js, we need a Python:
- Download an installer at https://www.python.org/downloads/windows
- Install with "Add Python 3.X to PATH" checked
- Run
npm install --global --production windows-build-tools
from an elevated PowerShell or CMD.exe as Administrator
- Download an installer at https://www.postgresql.org/download/windows
- Run the installer with a flag
--install_runtimes 0
like this:
> postgresql-11.2-1-windows-x64.exe --install_runtimes 0
- Download a latest installer at https://www.pgadmin.org/download
- Run the pgAdmin and login with a root user
- Right click
Login/Group Roles
andCreate > Login/Group Role
General
Panel:Name
:arkuser
Definition
Panel:Password
:arkark
Priviledges
Panel:- Check all
Yes
- Check all
- Right click
Databases
andCreate > Database
General
Tab:Database
:arkdb
Owner
:arkuser
# prepare `.env` and edit it for your own environments
$ cp .env.example .env
# install dependencies
$ yarn
# development mode
$ yarn dev
# production mode
$ yarn build
$ yarn start
The .env
file is like this:
# DB
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=arkuser
DB_PASSWORD=arkark
DB_DATABASE=arkdb
DB_SYNCHRONIZE=true
# App
PROTOCOL=http
HOST=localhost
PORT=4000
SESSION_SECRET=ark
With production usages, please use pm2 for Node.js process managements.
# install pm2
$ npm install --global pm2
# run the app "ARK" with the config `ecosystem.config.js`
$ pm2 start
The example ecosystem.config.js
:
module.exports = {
apps : [{
name: 'ARK',
script: '.next/production-server/main.js',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '1G',
env: {
NODE_ENV: 'production'
}
}]
};
- Support: Mac, Linux and Windows
- Support: production usages
- Security: environment variables both server and client
- Security: production ready session store
- Security: custom auth guards
- Database: auto synchronization with entities
- Server: integration between nest and Next.js
- UI: integration between Next.js and Material UI
- UX: validation
- API: JSON API routes
- Auth: passport-local (email & password)
- Auth: passport-github2 (GitHub login)
- Auth: passport-twitter (Twitter login)
- Feature: authentication
- Feature: blogging
- Test: unit tests
- Test: e2e tests
We use Node.js v12, so if you use v10, please rm -f yarn.lock
:
(Because Node.js v10 and v12 are incompatible in terms of no coexistence. APIs are compatible.)
# remove incompatible dependencies
$ rm -rf node_modules yarn.lock
# use your compatible dependencies
$ yarn