-
Add server side rendered async api calls to your Next.js application that resolve before the initial page load
Add api calls to your application that can all be resolved before the initial render, giving the user (or bot) a fully loaded page right from the get-go.
-
Secure a Next.js application with JWT, and a private route higher order component
Authenticating and securing a Next.js application
-
Create a secured REST Api for a Next.js application using JWT and Golang
Create a secured REST Api using JWT and Golang
-
Showing code coverage for a React app using Code Climate and Travis CI
The documentation on Code Climate for setting up auto generation of code coverage for a JavaScript application was lacking pretty hard. Here I show how we can get a React app using Travis CI and Jest to automate generating code coverage that gets sent to Code Climate.
-
Testing a TypeScript React app using TS-Jest without using Create React App
Lets create a TypesScript React app without using the cli tool Create React App. This allows you to create a custom build specific to your deploy process.