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

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.

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
```