Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/metal/metal-tutorial-todo
Simple Todo App built with Metal.js, intended to be used for metaljs.com tutorial.
https://github.com/metal/metal-tutorial-todo
Last synced: 2 months ago
JSON representation
Simple Todo App built with Metal.js, intended to be used for metaljs.com tutorial.
- Host: GitHub
- URL: https://github.com/metal/metal-tutorial-todo
- Owner: metal
- License: other
- Created: 2017-11-15T19:58:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-15T16:12:31.000Z (about 7 years ago)
- Last Synced: 2024-08-04T13:01:21.920Z (6 months ago)
- Language: JavaScript
- Size: 70.3 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-metaljs - Tutorial TudoList
README
# metal-tutorial-todo
Simple Todo App built with Metal.js, intended to be used for metaljs.com
tutorial which can be found at https://metaljs.com/docs/tutorials/.## Setup
1. Install NodeJS >= v4.0.0 and NPM >= v3.0.0, if you don't have it yet. You
can find it [here](https://nodejs.org).2. Install local dependencies:
```
npm install
```## Build
There are four different build scripts that can be used in this project. Two for
the JSX examples, and two for the Soy examples.* `npm run build:jsx`: builds the example located in **src/jsx/**
* `npm run build:jsx:final`: builds the example located in **src/jsx/final**
* `npm run build:soy`: builds the example located in **src/soy/**
* `npm run build:soy:final`: builds the example located in **src/soy/final**Please navigate to https://metaljs.com/docs/tutorials/tutorial-todo-jsx/ or https://metaljs.com/docs/tutorials/tutorial-todo-soy/ for more information.