The Front-End Tooling Survey 2018 - Results
2018年、フロントエンドのデベロッパーがプロジェクトで使用しているCSS, JavaScriptのツールを調査
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const API_TOKEN = ""; // your api token | |
| const fetchTasks = async()=>{ | |
| const response = await fetch("https://beta.todoist.com/API/v8/tasks?filter=today",{headers:{Authorization:`Bearer ${API_TOKEN}`}}); | |
| const result = await response.json(); | |
| let concat = ''; | |
| result.forEach(r=>concat += r.content.replace("!!", "") + '\n\n'); | |
| console.log(concat); | |
| } |
①「React」でUIを構築してみて、便利さを知る
②フロントで問題となる状態管理を「Redux」でやってみることで、モダンなアーキテクチャを体験する
- npm or yarn のinstall
npm: https://nodejs.org/ja/download/
yarn: https://yarnpkg.com/lang/ja/docs/install/#mac-stable
