A todo list manager example made with Next.js.
Next.js
version of nuxt-todo implementatoin.
Demo: https://next-todo.netlify.com
- You can
add
ordelete
todo items, andtoggle
by clicking checkbox. Modal dialog
for item delete confirm.React Hooks
is used for state control.- Persisting data to
LocalStorage
- While this application is intended to be an example of Nuxt.js, TypeScript is not used.
- Bulma for styling
TodoList
component uses variable ofbulma
with@import
- Netlify for demo site deploy
- GitHub Actions for CI/CD
git clone git@github.com:nemolize/next-todo.git && cd next-todo
# install dependencies
$ yarn
# serve with hot reload at localhost:3000
$ yarn dev
# generate static project
$ yarn build