Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ncpa0/jsxte-with-babel-example
Example project of a Express http server, using JSXTE for html templates.
https://github.com/ncpa0/jsxte-with-babel-example
Last synced: about 1 month ago
JSON representation
Example project of a Express http server, using JSXTE for html templates.
- Host: GitHub
- URL: https://github.com/ncpa0/jsxte-with-babel-example
- Owner: ncpa0
- License: mit
- Created: 2023-03-10T13:49:07.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-16T10:13:15.000Z (10 months ago)
- Last Synced: 2024-03-16T12:08:57.654Z (10 months ago)
- Language: TypeScript
- Size: 1.19 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup
1. Make sure you have [Node.js](http://nodejs.org/) installed.
2. Clone this repository.
3. Enter the repository and install the dependencies via `npm` or `yarn`:```sh
npm install
```or
```sh
yarn
```4. Build the project files:
```sh
npm run build
```or
```sh
yarn build
```5. Start the server:
```sh
npm run start
```or
```sh
yarn start
```6. Example TODO app should now be up and running at [http://localhost:8080](http://localhost:8080)