├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Sébastien Lorber 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TodoMVC Onboarding 2 | Showcase different ways to add a complex onboarding to an existing TodoMVC app 3 | 4 | Adding an onboarding (not a simple carousel) to an existing application is a transversal concern that can be quite hard. It may require to modify or refactor the initial app. It seems to me a good way to mesure how hard it can be to add a new requirement to an existing application, and maintain it over the long run. It can also permit to evaluate which ways are creating more or less coupling between app components. 5 | 6 | The point of this repository is to take existing TodoMVC implementations in different frontend technologies, and show different ways of implementing an onboarding on top of it. 7 | 8 | I've mostly created this repository to show how [redux-saga](https://github.com/yelouafi/redux-saga) can be helpful so my first target is to provide an implementation in both redux-saga and redux-thunk, but I hope other technologies like Elm and CycleJs will give a try too. 9 | 10 | 11 | # Spec 12 | 13 | The spec is to be defined: https://github.com/slorber/todomvc-onboarding/issues/1 14 | 15 | # Related projects: 16 | - [Todo MVC](https://github.com/tastejs/todomvc) 17 | - [Flux Challenge](https://github.com/staltz/flux-challenge) 18 | 19 | 20 | --------------------------------------------------------------------------------