Fundamentals of Web Development What is Git? What are Preview Environments? Git is a version control system. When changes are made, they are written to a repository, which allows users to keep track of changes that have been made.
Fundamentals of Web Development What is Web Architecture? When visiting a site, the browser makes a request to the server and the server sends information back to the browser. There are three types of rendering that will be addressed: server-side rendering, prerendering, and client-side rendering.
Fundamentals of Web Development What is JavaScript? Using JavaScript, a web developer can make interactive features for their page. JavaScript is versatile: the frontend, backend, and API of a web app can all be built using JavaScript.
Fundamentals of Web Development What is HTML? What is CSS? HTML provides structure for a web page, CSS makes a web page look good, and JavaScript provides the functional foundation of a web page
Best Practices How to set up production-ready preview environments for your React application Preview environments (ephemeral environments) are temporary deployments of a certain version of your application, typically done for every feature branch. Let’s walk through a scenario. You’re building a