diff --git a/README.md b/README.md
index b1af2c25ccf0490d17a6eff5549dcffeff881211..854fdf395907b683f851b2f94453e1e699d47546 100644
--- a/README.md
+++ b/README.md
@@ -30,4 +30,11 @@ touch device/__init__.py
 
 ```bash
 pip install flask
+```
+
+## Create JS Frontend
+```bash
+mkdir frontend
+cd frontend
+npm init
 ```
\ No newline at end of file
diff --git a/frontend/package.json b/frontend/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..780a501f448c70e2e3ec4d28f4b46a854212732c
--- /dev/null
+++ b/frontend/package.json
@@ -0,0 +1,11 @@
+{
+  "name": "frontend",
+  "version": "1.0.0",
+  "description": "TIQI JS tutorial frontend",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "Matt Grau",
+  "license": "ISC"
+}