Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harrisoncramer/ts-fullstack
Typescript full stack application Template (Vue, TS, Express)
https://github.com/harrisoncramer/ts-fullstack
Last synced: about 1 month ago
JSON representation
Typescript full stack application Template (Vue, TS, Express)
- Host: GitHub
- URL: https://github.com/harrisoncramer/ts-fullstack
- Owner: harrisoncramer
- Created: 2024-08-03T16:21:46.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T02:05:37.000Z (4 months ago)
- Last Synced: 2024-08-12T18:39:02.246Z (4 months ago)
- Language: TypeScript
- Size: 362 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Typescript User Directory
This is a full stack Typescript application using Vue and Express.
## Development
You can spin up the application by running:
```bash
$ npm i
$ npm start
```If you prefer to keep the Vite and Express logs separate, you can do so by running both applications separately.
```bash
$ npm i
$ npm run start:vite
$ npm run start:express # In a separate terminal
```## Production
To build the application for a deployment run:
```bash
$ npm run build
```This will build both the server and client code to `dist-client` and `dist-server` respectively.