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

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

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.