Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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)