diff --git a/.babelrc b/.babelrc
new file mode 100644
index 0000000..cedf24f
--- /dev/null
+++ b/.babelrc
@@ -0,0 +1,5 @@
+{
+ "presets": [
+ "@babel/preset-env"
+ ]
+}
\ No newline at end of file
diff --git a/.eslintignore b/.eslintignore
new file mode 100644
index 0000000..d663cc1
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1,3 @@
+webpack.config.js
+node_modules
+build
\ No newline at end of file
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 0000000..ae7f085
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,22 @@
+{
+ "parserOptions": {
+ "ecmaVersion": 9,
+ "sourceType": "module"
+ },
+ "extends": "airbnb-base",
+ "globals": {
+ "document": true,
+ "window": true,
+ "$": true,
+ "XMLHttpRequest": true,
+ "allowTemplateLiterals": true
+ },
+ "rules": {
+ "no-console": [1, { "allow": ["error", "warn"] }],
+ "comma-dangle": ["error", "only-multiline"],
+ "no-debugger": 1,
+ "class-methods-use-this": 0,
+ "linebreak-style": 0,
+ "max-len": [1,200,2]
+ }
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..60f096d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+.vscode/
+.DS_Store
+package-lock.json
+node_modules/
+dist/
+build/
+.firebase/
\ No newline at end of file
diff --git a/README copy.md b/README copy.md
new file mode 100644
index 0000000..ebee85f
--- /dev/null
+++ b/README copy.md
@@ -0,0 +1,81 @@
+# Webpack Intro
+
+[See Live Demo](https://webpack-temp.netlify.app/)
+
+Webpack is a task runner and a module bundler. It originally started as a module bundler. This means that it takes all of your separate Javascript modules and bundles them together into a single file. Webpack also automates some of the tasks that we have to run every time we change the code. It will automate these tasks so that we are not typing in the same commands every single time.
+
+- Visit the [Webpack documentation](https://webpack.js.org/concepts/) if you want to explore more.
+- [Info on our Webpack Config](https://github.com/nss-nightclass-projects/Night-Class-Resources/blob/master/book-2-patterns-and-tools/chapters/webpack-configure.md)
+
+## Get Started
+
+### Use Template
+#### 1. To get started, click the GREEN "Use this Template" button at the top of the repo
+![Use this Template](./documentation/usetemplate.png)
+
+#### 2. Make sure YOUR github account is selected in the dropdown and name your project
+![Create Project](./documentation/createproject.png)
+
+3. Click the **GREEN** "Create repository from template" button
+4. Clone your new repo to your local machine
+5. Start working!
+
+## Starting the Project
+1. Open the `package.json` file and change the `name` property to the name of your application, and `author` to your name.
+1. From your command line, be in the root directory and run `npm install` OR `npm i` for short.
+1. To start your application, run `npm start`
+
+### If you see this, you are set to go!
+![LIT](./documentation/lit-screen.png)
+
+**NOTE:** Changes you make to the project will make the browser reload on save...no more hard refresh unless something goes wrong.
+
+## Other Important Tidbits
+### Console messages
+From this time forward, you will be expected to have a clean console in order for your assignments to be approved. This means that the use of `console.log` is acceptable **_(debugger is WAY better though)_** while developing, but will throw a warning in your console like the image below, but all `logs` will have to be removed. You may use `console.error` and `console.warn` in your code however.
+
+![not acceptable](./documentation/notacceptable.png)
+
+### Including Images with Webpack
+If you have a folder of local images that you want to load into your code things get a little strange with webpack. Remember the only way webpack knows about assets is if they are imported into your javascript files. Even our CSS is not added until those files are imported into our javascript files. Below is some sample code for how to load a local image file into your project
+
+```js
+import cat from './assets/cat.jpg';
+
+let domString = ``;
+
+document.getElementById('cat').innerHTMl = domString;
+```
+
+### Importing CSS/SCSS
+```js
+import '../styles/main.scss';
+
+const init = () => {
+ $('#app').html('