Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lanceschi/todo
A live demo can be tested at https://lanceschi.github.io/todo
https://github.com/lanceschi/todo
Last synced: 23 days ago
JSON representation
A live demo can be tested at https://lanceschi.github.io/todo
- Host: GitHub
- URL: https://github.com/lanceschi/todo
- Owner: lanceschi
- Created: 2020-07-26T18:53:52.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2022-12-13T09:38:21.000Z (about 2 years ago)
- Last Synced: 2024-11-16T04:48:06.053Z (3 months ago)
- Language: JavaScript
- Homepage: https://lanceschi.github.io/todo
- Size: 1.34 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
![ci](https://github.com/lanceschi/todo/workflows/ci/badge.svg)
- [1. Demo](#1-demo)
- [2. Development notes](#2-development-notes)
- [2.1. Run in development mode](#21-run-in-development-mode)
- [2.2. Build the webapp](#22-build-the-webapp)
- [2.3. Launch the webapp test coverage](#23-launch-the-webapp-test-coverage)
- [3. Notes](#3-notes)# 1. Demo
A live demo can be tested at https://lanceschi.github.io/todo
# 2. Development notes
## 2.1. Run in development mode
- cd to repo folder
- install node v12.18 or use [NVM][1]```bash
$ nvm install 12.18
$ nvm use
```- start webserver in development mode:
```bash
$ npm start
```Open the browser at [localhost:3000](http://localhost:3000)
## 2.2. Build the webapp
- cd to repo folder
- launch the build script```bash
$ npm run build
```- Output folder is **dist/**
## 2.3. Launch the webapp test coverage
- cd to repo folder
- launch the build script```bash
$ npm run test:coverage
```# 3. Notes
This repo embeds a automatised github action workflow in order to test every git commit, merge and release operations.
[1]: https://github.com/nvm-sh/nvm