https://github.com/typescene/sample-project-todo
Typescene example project: Todo
https://github.com/typescene/sample-project-todo
Last synced: 4 months ago
JSON representation
Typescene example project: Todo
- Host: GitHub
- URL: https://github.com/typescene/sample-project-todo
- Owner: typescene
- License: mit
- Created: 2019-06-10T06:19:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-11T09:42:29.000Z (over 3 years ago)
- Last Synced: 2025-05-16T10:11:56.350Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://typescene.dev
- Size: 229 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Typescene sample application: Todo
This repository contains an example application for the Typescene framework. It contains the following components:
- Application instance (using `@typescene/webapp`)
- `TodoService` -- Service that provides an API for creating and managing `TodoItem` objects
- `MainActivity` -- Single activity for the application
- Main view (using JSX)
- `TodoStatusLine` -- Example of a simple view component
This application uses Webpack for bundling, and for running a development server.

### Build & Run
To build this project (all output files will be stored in a `dist` folder), run the following command:
```bash
npm run build
```
To run this project in development mode (using Webpack HMR, i.e. Hot Module Replacement), run the following command:
```bash
npm run start
```
### License
This code is covered by an MIT license.