You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🥚 You understand the JavaScript Event Loop, and can demonstrate this by using setTimeout and setInterval to schedule simple tasks.
🥚 You can explain why Asynchronous Programming is important for programs that have blocking and non-blocking tasks.
🥚 You can explain the basics of the Client/Server model and HTTP requests and can fetch data from RESTful APIs.
🥚 You can convert built-in Node modules from consuming callbacks being promises.
🐣 You can write and run JavaScript for Node.js or for the Browser. Both environments run JavaScript but they have some important differences!
use cases: You can explain some use cases that are unique to each runtime.
built-in APIs: You can list some of the key APIs available in each environment, and why they are not available in the other.
module systems: You can explain the difference between CommonJS Modules in Node.js and ES Modules in the Browser. You can write and use programs written with either system.
🐣 You can break down an asynchronous problem into smaller tasks and solve it using promises. This includes identify which tasks depend on each other and which are independent:
dependent tasks: The return value from one task is required to start the next task, these must be completed in a specific order - .then
independent tasks: These tasks do not use each other's return values, they can be completed at the same time - Promise.all
🐣 You can trace, refactor and write code that accesses the file system between these 3 different syntaxes:
Callbacks
Promises
async/await
🐣 You can step through a Node.js command line application using the VSCode debugger.
You can write small programs with a Data Access layer that asynchronously uses data stored in different locations:
🐣 Browser: You can write a small web page that fetches data from a RESTful API and renders it into the DOM.
🐥 Node: You can write a small CLI program that reads user input from process.argv and reads/writes the file system.
Study Plan
Learning Objectives
setTimeoutandsetIntervalto schedule simple tasks.fetchdata from RESTful APIs..thenPromise.allasync/awaitfetches data from a RESTful API and renders it into the DOM.process.argvand reads/writes the file system.