F1V Development Blog

Engineering driven by passion

Latest Posts

As a React.js developer, what is React Native like?

August 29, 2021   3 min read

If you are a React developer you may have considered using React Native, one of the most popular frameworks for creating cross-platform mobile apps. Let’s look…

Using React 360

July 29, 2021   5 min read

The react-360 framework is for creating interactive 360 experiences that run in your web browser. It pairs modern APIs like WebGL and WebVR with the declarative…

Build a decentralized CRUD application

July 15, 2021   13 min read

Blockchain technology today allows developers to create decentralized web applications by deploying smart contracts to the blockchain and interacting with the…

GIT and PR reviews

June 17, 2021   7 min read

For both new and experienced developers, when it comes to workflow there are many valuable rules and tools that we can make use of. Today I’d like to focus on…

Real Time Data Transfer with Socket.io and React

May 20, 2021   2 min read

Building multi-user applications such as a messaging service or game like chess is a challenge. Luckily with JavaScript, we have new technologies sprouting up…

Using Recoil for State Management

February 18, 2021   3 min read

Recoil is a package made by Facebook which helps manage state in a React app. It is minimal and effective for smaller to medium projects. Why to use Recoil The…

Introduction to React-Spring Hooks

November 19, 2020   3 min read

The react-spring animation library is a spring-physics based animation library. It gives you an array of tools to easily and elegantly create animations. This…

Getting Started With Ethereum Blockchain Development

November 05, 2020   9 min read

How to start Ethereum blockchain development Using Truffle Suite and React Many developers are beginning to take an interest in blockchains and decentralized…

Starting a repository from scratch for VSCode (and implementing eslint, prettier, and git!)

October 14, 2020   3 min read

Prerequisites: VSCode (Visual Studio Code): VSCode download VSCode prettier extension VSCode eslint extension Npm (Node Package Manager): Npm download or with…

Visualizing Data in React With Chart.js

October 12, 2020   3 min read

I recently took an interest in data science as a whole and I was looking for a way to relate my career as a developer to it. Charting and graphing came to mind…

Creating an iOS App with Swift

September 26, 2020   5 min read

I recently released my first iPhone app on the App Store - Tappy Gopher. It had been a goal of mine to release an app, but I had always imagined I would use a…

The Easiest Way to Use Icons in React

September 23, 2020   2 min read

The react-icons project provides a developer-friendly way to use thousands of open source icons in any React project. The great thing is that it includes a…

Publishing to npm Using GitHub Actions

June 26, 2020   4 min read

GitHub Actions present a great way to automate tasks. In this case, we are setting up a way to update a React component library, zati, on the npm registry. The…