MBMichael Burrowsinmichaelburrows.hashnode.dev·Dec 4, 2020 · 5 min readCreate a custom React star rating componentIn this tutorial we’ll be building a custom React star rating component. This type of component allows users to give something a rating between 1 and 5 stars with a single mouse click. Here’s how the completed component will look & function: Let’s g...00
MBMichael Burrowsinmichaelburrows.hashnode.dev·Nov 26, 2020 · 6 min readStyle a responsive navbar component with Tailwind CSSIn this tutorial we’ll be building a responsive navbar using the Tailwind CSS framework. Unlike other CSS frameworks Tailwind doesn’t include any pre-built components but rather allows you to design and build custom components using utility classes. ...00
MBMichael Burrowsinmichaelburrows.hashnode.dev·Nov 18, 2020 · 9 min readReact user registration & authentication using FirebaseIn this tutorial we’ll be using the Firebase Authentication service to setup user registration and authentication in a React application. Firebase simplifies the process of user authentication allowing you to focus on other parts of the development p...00
MBMichael Burrowsinmichaelburrows.hashnode.dev·Nov 9, 2020 · 3 min readHow to create & publish a npm packagenpm is package manager for Node.js that allows JavaScript developers to easily share packaged modules of code. In this tutorial we’ll be creating and publishing a simple npm package that displays a funny quote in the console. Before you can publish a...00
MBMichael Burrowsinmichaelburrows.hashnode.dev·Oct 27, 2020 · 2 min readUsing the HTML Geolocation API to display a users location on a mapThis article was originally published here. In this tutorial we'll be using the HTML Geolocation API to display the current location of a user on a map. While this example is quite simple it's provides solid foundation for creating more complex locat...00