Skip to content

TODOアプリのWEBクライアント

Notifications You must be signed in to change notification settings

yuto-kimura-g/todo-app-client

Repository files navigation

todo-app-web-client

mattnさんの記事 (技術アウトプットに自作TODOアプリ) を読んで,TODOアプリを作ってみた.

今回意識したのは

  • 最新の技術を使いたい
  • 機能,見た目に拘りすぎない(まずは動くものを作る)
  • CSSを書かない(ライブラリに任せる)

開発中のメモは NOTE.md

Screenshot

screenshot

Click to expand screenshot screenshot screenshot screenshot screenshot

Tech Stack

  • NVM (version manager)
  • React (ui library)
  • Next.js (framework)
  • TypeScript (programming language)
  • Chakra UI (ui library)
  • Eslint (linter)
  • Prettier (formatter)
  • axios (http client)
  • json-server (mock server)

LOG

nvm use
npx create-next-app@latest
npm install @chakra-ui/react @chakra-ui/next-js @emotion/react @emotion/styled framer-motion
npm install @chakra-ui/icons
npm install -D prettier json-server
npm run dev
npm run mock
npm run build
npm run start

References