Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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.