
Learn JavaScript basics using a simple execution tool to declare variables with var, let, and const, and perform arithmetic operations—add, subtract, multiply, divide, and modulus—with bracketed precedence.
Explore how functions and classes organize JavaScript code, implement an add function and a car class with an announce method, and create instances to share behavior.
Install node.js and yarn, set up git bash and a code editor, create a Next.js app with create-next-app, then run yarn start to view at localhost:3000.
Enable static assets by importing images and styling with less, using a next.config.js to load asset types, and installing four dependencies (next-sace, next-images, zite, less).
Learn to set up Redux in a Next.js app by installing packages, building a Redux folder with actions, reducers, and types, and wiring the store to the application.
Install the react developer tools chrome extension to inspect react elements and view component state values, including redux state, by opening dev tools and checking header, registered, and logging components.
Explore Node.js and Express as a backend for your Next.js app, using asynchronous, non-blocking, event-driven APIs to handle multiple requests with a fast, single-threaded, scalable, no buffering server.
Explore setting up environment variables and connecting to MongoDB with mongoose, including enabling useCreateIndex, and manage asynchronous operations using promises and async/await with try/catch for error handling.
Define a user schema with name, age, email, and password, create and save a dummy user, and explore unique email constraints and basic MongoDB using Mongoose.
Explore building a register endpoint with express router and mongodb, hash passwords with a salt, generate a token, save new users, and return the token for authentication.
Create a login endpoint using email authentication and password hash verification. Return user details and an access token, without exposing the password.
Create a sign up and register flow using a Bootstrap modal, manage form data with React state, and capture name, age, email, and password as users type.
Build a login form by reusing the register code, switching to sign in with email and password, and toggling the sign-in modal from the header.
Learn how to display and handle errors in a Redux-powered app, dispatch meaningful error messages, and persist and restore user data from local storage during authentication.
Deploy and manage your full stack app on Hiroku, linking GitHub, configuring environment variables, and enabling manual or automatic deployments while testing registration and weather features.
Next.js is a framework for creating React applications that comes with a page-based routing system, server-side rendering, static optimization with data-fetching, automatic code-splitting, client-side routing with page prefetching, built-in CSS (and SASS) support and API routes.
Next.js is based on React, webpack and babel. It is an awesome tool for creating web application and famous for server-side rendering. Next.js was built by Zeit.
While React is awesome, Next.js takes it a step further with better SEO owing to its Server Side Rendering feature. Next.js is a fast-growing React framework that is currently in use on over 110,000 repositories on github.
Next.js has a wide set of features that most tech enthusiasts and companies love;
Hot Code Reloading: It automatically reloads the application when changes in the code get saved.
Automatic Code Splitting: By this feature, every import in the code get bundled and served with each page. It means that unnecessary code never get loaded into the page.
Ecosystem Compatibility: Compatible with JavaScript, Node and react.
Server Rendering: Easily render react component on server before sending HTML to client.
Styled-JSX: Styled-JSX allows you to write CSS directly inside JavaScript code.
This Course covers the basics of setting up your Next.js app and configuring it for Redux, MongoDB, Bootstrap 4 and LESS styling, from there we will go over some implementations of these key features, the aim is to give you a solid understanding of what can be accomplished and how you can accomplish it.
We will also take into account some best practices when it comes to file structuring
This Course is For You If....
You want to be able to create web applications and web servers in one of the more common modern ways
You still don't see the big picture when it comes to web development
You want to fast track your way into becoming a Full stack web developer