Make a digital diary with Netlify CMS
Netlify CMS Netlify CMS is open source Git-based Headless CMS which is provided by Netlify. All contents are pushed to G...
Javascript's forEach() doesn't wait for async/await
“await” doesn’t work in forEach() Let’s say there is a situation that we have to make multiple API calls, and make an AP...
How to solve CSS loading delay with Gatsby
CSS loading delay When I access the page made with Gatsby, HTML shows up naked and CSS is loaded after a second. It’s no...
Use Typescript with Gatsby and run type check
Me personally, I love dynamic typing language much. But as the project grows and data becomes complicated I end up using...
Connect to localhost from your iPhone
Frontend dev is an infinite loop of writing code and checking on a browser. Plus, you must check on mobile and tablet de...
All meta tags you should set for SEO
What is meta tag? It is a specific tag to write your site information inside of HTML. Visitors don’t see your meta tags...
Write fewer React props passing to input element
Presentational VS Container We use two types of component as a convention of React. Presentational components ・are conce...