Git Product home page Git Product logo

ra-project03demo's Introduction

minimalES6-v01

A minimal website that would be required to run ES6 type code.

Version 1.1.

THIS GIT URL is at

https://github.com/eapostol/minimalES6-v01.git

I created the repo on the git website, then cloned it into a local directory with a similar name as the repo.

In the subdirectory I created for the project, I invoked git init from the terminal.

I filled in the information to initialize the repo as required.

Then install webpack GLOBALLY. this makes it available to transpile at your terminal. I discovered this issue through user testing with Ala. My machine already has webpack installed globally.

npm install -g webpack

Next, I installed the following modules the order is referenced below, using

npm install --save-dev nameOfModule

as usual.

Ignore the version numbers referenced below, I copied the module names from package.json. So at the terminal it would be like

npm install --save-dev webpack npm install --save-dev webpack-dev-server

etc.

Not specifying at @latest installs the latest version anyway. But note that they updated BABEL (thanks to my interference lol).

1. "webpack": "^1.13.2",
2. "webpack-dev-server": "^1.15.0"
3. "babel-cli": "^6.14.0",
4. "babel-core": "^6.14.0",
5. "babel-loader": "^6.2.5",
6. "babel-preset-es2015": "^6.14.0",
7. "file-loader": "^0.9.0",
8. "node-libs-browser": "^1.0.0",
9. "node-sass": "^3.8.0",
10. "sass-loader": "^4.0.0",
11. "css-loader": "^0.24.0",
12. "style-loader": "^0.13.1",

No warnings at this point...

Then create a file called .babelrc . You see the source file for the code in this repo. This makes babel use ES2015 for sure.

Then I modified the following in the scripts: property of package.json to add build and start properties

"scripts": { "test": "echo "Error: no test specified" && exit 1" "build": "webpack", "start": "webpack-dev-server" }

the build property above tells npm what module is used to build the site. In this case, its webpack (as opposed to Node)

the start property tells npm what to start. In this case, it's the webpack dev server, used for testing (like an Apache server). You will likely explore Apache when you cover PHP and Wordpress.

Create a file called webpack.config.js

  • use my example web.config.js
  • its commented, so review it. You don't have to master NODE to know the intricacies of what is happening, but be familiar with the basics of webpack.config.js
  • a good starter video to learn webpack is at https://www.youtube.com/watch?v=TaWKUpahFZM

FINALLY Create some sample ES6 classes. see the /src folder.

There is index.js, and sample classes to be imported, called Person.js, and Car.js.

-index.js is 'linked' to index.html and becomes the 'launcher' for the app. It brings all the code together. -index.js uses imports to include the other classes -The other classes are marked as export. -most of the script is up to ES6 compliancy.

at the terminal, run

webpack

^ the above should transpile file .js files accordingly.

then run

npm start

^ which launches the dev testing server in hot module replacement mode. This means changes in your code on the fly will automatically refresh the browser.

DO THIS STUFF with CARE! It's subject to change. As always, slack me with questions or e-mail me at [email protected].

I am here to help!

ra-project03demo's People

Contributors

eapostol avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.