https://github.com/theodesp/todolist-stencil
A simple Todo List app using Stencil.js.
https://github.com/theodesp/todolist-stencil
stenciljs todolist-application typescript web-components
Last synced: 8 months ago
JSON representation
A simple Todo List app using Stencil.js.
- Host: GitHub
- URL: https://github.com/theodesp/todolist-stencil
- Owner: theodesp
- License: mit
- Created: 2018-05-02T13:20:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-18T18:35:11.000Z (over 6 years ago)
- Last Synced: 2024-10-19T09:18:47.704Z (about 1 year ago)
- Topics: stenciljs, todolist-application, typescript, web-components
- Language: TypeScript
- Size: 363 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Todo List Stencil App
A simple Todo List app using Stencil.js.
## Getting Started
Run:
```bash
npm install
npm start
```
To view the build, start an HTTP server inside of the `/www` directory.
To watch for file changes during development, run:
```bash
npm run dev
```
To build the app for production, run:
```bash
npm run build
```
To run the unit tests once, run:
```
npm test
```
To run the unit tests and watch for file changes during development, run:
```
npm run test.watch
```