lesson
What is TypeScript? A Beginner's GuideThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptJavaScript is considered a weakly typed language. In this lesson, we'll go through a simple example of why that can be an issue in development and where TypeScript falls in the picture.
lesson
How to Automatically Reload a Node.js Server with NodemonThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptNodemon is an open-source utility tool that helps automatically restart a Node server whenever a change in code is detected in development. In this lesson, we'll install Nodemon and introduce an application script that will start the Node server with Nodemon.
lesson
How to Create a Minimal Express Node.js ServerThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptWeb servers provide functionality for requests that can be made from client applications. Node has a built-in HTTP module that provides the capability to create a server. With this lesson, we'll look to use the popular Express framework as the replacement of the core HTTP module to create a minimal Node server, with Express routing.
lesson
How to Run a JavaScript File with Node.jsThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this lesson, we'll use Node to run a simple JavaScript file on the server.
lesson
What is Node.js? A Beginner's Guide.The newline Guide to Building Your First GraphQL Server with Node and TypeScriptNode is a JavaScript runtime environment that can run on different platforms (Mac, Windows, Linux, etc.). It was first introduced in 2009 by Ryan Dahl, as a response to how slow web servers were at the time. In this lesson, we'll introduce Node and talk about the capability Node provides to make I/O tasks asynchronous and non-blocking.
lesson
A Node, TypeScript, and GraphQL Developer EnvironmentThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptQuick walkthrough of the development environment and tools used in the course.
lesson
Welcome, Getting StartedThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptIntroduction to the Newline guide to building your first GraphQL server with Node and TypeScript.
lesson
Beginner's Guide to Styled Components in React [with examples]Build a Spotify Connected AppInstall and configure Styled Components in our React app
lesson
How to Setup and Scaffold React RouterBuild a Spotify Connected AppScaffold out our app's pages with React Router
lesson
How to Fetch Spotify API Data with Credentials with AxiosBuild a Spotify Connected AppUse axios to send a request to the Spotify Web API and render response data on the front end
lesson
Optimize React and Express.js code with npm concurrentlyBuild a Spotify Connected AppStreamline development in a client/server architecture with Concurrently
lesson
How to Pass OAuth Tokens to a React AppBuild a Spotify Connected AppUse Create React App to quickly spin up a React front end and pass OAuth tokens from server to client