2019-07-01から1ヶ月間の記事一覧

React useContextとemotion-themingを使ってテーマ切り替え機能を実装する🌔

emotion-themingを利用して、テーマ切り替え機能を実装します。Twitterのと一緒です。ボタン押して、toggleできるものを目指します。 Install とりあえず npx create-react-app dark-mode --typescript emotion yarn add @emotion/core @emotion/styled emot…

ExpressをTypescriptで書く

インストール Express, Typescript, webpackをインストール yarn add express yarn add -D @types/express typescript ts-loader webpack webpack-cli ファイルの変更を検知してnode再起動してくれる nodemon をインストール yarn add -D nodemon Webpackの…

Webpackとは(今更)

いつもなんとなくでググって出てくるものをコピペしてたので、自分で構成できるよう、調べた。 Webpack? webpack is a static module bundler for modern JavaScript applications. https://webpack.js.org/concepts/ module bundler? モジュールをまとめ…