From 22da1a4784e4ae374c7b5108580af4bb769653a7 Mon Sep 17 00:00:00 2001 From: Devin Helmgren Date: Wed, 15 Jul 2020 10:41:44 -0700 Subject: [PATCH] added review --- 10-JavaScript/js-ecosystem-review.md | 84 ++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 10-JavaScript/js-ecosystem-review.md diff --git a/10-JavaScript/js-ecosystem-review.md b/10-JavaScript/js-ecosystem-review.md new file mode 100644 index 000000000..d4d9a82be --- /dev/null +++ b/10-JavaScript/js-ecosystem-review.md @@ -0,0 +1,84 @@ +# Reading Review: JS Ecosystem + +This reviews [JavaScript Ecosystem](https://github.com/Ada-Developers-Academy/textbook-curriculum/blob/master/10-JavaScript/js-ecosystem.md) and [CRA Build System](https://github.com/Ada-Developers-Academy/textbook-curriculum/blob/master/React/cra-build-system.md) + +## Why do we need a build system for our client-side JS projects? + +1. What platform do client-side JS apps run on? This is _different_ compared to Ruby CLI programs, which run on Terminal/command line, and Ruby on Rails apps, which run on a Heroku server. +1. Without a build system, previously we have used a specific HTML tag to load a JS script, one-by-one, line-by-line. Which HTML tag loads a single JS script? +1. True or false: If your JS script named `index.js` is included into the html `index.html` with `