Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enriquebv/boilerplate-nestjs-vue-vscode
Full-stack boilerplate to create full-stack applications using Nestjs, Vue.
https://github.com/enriquebv/boilerplate-nestjs-vue-vscode
Last synced: 19 days ago
JSON representation
Full-stack boilerplate to create full-stack applications using Nestjs, Vue.
- Host: GitHub
- URL: https://github.com/enriquebv/boilerplate-nestjs-vue-vscode
- Owner: enriquebv
- Created: 2020-07-08T09:17:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T03:18:50.000Z (almost 2 years ago)
- Last Synced: 2023-02-27T10:33:01.121Z (almost 2 years ago)
- Language: Vue
- Size: 5.13 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 50
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Full-Stack Boilerplate: NestJS & Vue (TypeScript)
Boilerplate to create full-stack applications using NestJS in the server, Vue in the front-end, and TypeScript as language. Includes config files to help to use it the repo in VSCode (higly recommended).
## How
back-end and front-end are just part of a lerna package, to keep isolated (and easily managed) both aspects of the project. There is a few configurations in each side to keep all working together (like the SPA module for NestJS).
## Why
As full-stack developer, I'm tired of fighting with Eslint, Babel, tsconfig's and more, I just want to prototype fast. NestJS it's great, Vue too, and with TypeScript together are awesome.
## Getting started
Just fork the repo, and execute:
```bash
yarn install
yarn bootstrap
```That will install all the packages (for root, back-end and front-end).
### Developing back-end
```
yarn back:dev
```### Developing front-end
```
yarn front:dev
```### Run production server
```
yarn prod
```