Fullstack Application Starter written with Typescript, Express, Nuxt, Typeorm (Mysql Driver). Please read steps below to run this project on your machine.
- Basic Login/Register uses (Json web token) with Authentication Middleware
- Simple Role Based Access Control in frontend (admin,user)
- CRUD Posts
- Send Emails via mailtrap.io
- Customizable Beautiful Sidebar
Steps to run this project:
copy .env.example to a new .env file and modify your personel info (db, mailtrap).
- Run
npm i
command - Setup database settings inside
data-source.ts
file - Run
npm start
command
- Run
npm i
command - Run
npm run dev
command
to test emails, add your credentials after setting up .env
file
the project's backend is written in typescript-express, so to deploy this application you must build it with the following command npm run build
TypeORM is an ORM that can run in NodeJS, Browser, Cordova, PhoneGap, Ionic, React Native, NativeScript, Expo, and Electron platforms and can be used with TypeScript and JavaScript (ES5, ES6, ES7, ES8). By default, we use Mysql, but you can change it to your favorite DB driver.