todomvc-svelte
todomvc-svelte copied to clipboard
TodoMVC built with Svelte and Store
TodoMVC built with Svelte and Store
The well-known TodoMVC built with Svelte and Store in a structured and testable way.
Concepts and tools covered
Usage
After installing the dependencies the following NPM scripts become available:
-
start
: starts the application in development mode on http://localhost:9500 -
build
: bundles the application for production into thepublic
folder -
test
: runs unit and E2E tests -
test:unit
: runs unit tests with Jest in thesrc
folder suffixed with*.spec.js
-
test:e2e
: runs E2E tests with Cypress in thetests/e2e
folder suffixed with*.spec.js
-
format
: formats the code with Prettier within thesrc
folder -
lint
: lint files with ESLint based on Airbnb's styleguide and the Prettier config
Component architecture
Application is compatible with Svelte devtools
Series
This implementation is part of a series where the same application was implemented with the same architecture.