Skip to content

Latest commit

 

History

History
109 lines (66 loc) · 1.35 KB

File metadata and controls

109 lines (66 loc) · 1.35 KB

JavaScript

Programming language used to make interactive webpages

Key Terms

Modules

Allow you to split code into different files and import/ consume/ export them as needed. 3 different types:

  1. AMD
  2. common js module.exports
  3. ES Module import React from 'react';

**********

Bundler

Take multiple modules in different files and link them into a singular file

Steps:

  1. Read the content of entry file
  2. Automatically find all imports and exports
  3. Automatically found all the modules on our hard drives
  4. Linked files into a singular output file with all values correctly communicating around

** Example: Webpack **

{
  "scripts": {
    "build": "webpack --mode=development"
  }
}

**********


GETTING STARTED COMMANDS

COMMAND EXPLANATION

docker ps -a
-a show all containers

**********

COMMAND

``
-

**********

COMMAND1

``
-

**********


ADVANCED COMMANDS

COMMAND2

``
-

**********

COMMAND3

``
-

**********


Configs

Name_of_config

What does the config do
Config example and definition of each term

**********


Processes

Process

  1. steps
  2. step
  3. step

**********


Links

Name