-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathintro.html
More file actions
21 lines (21 loc) · 784 Bytes
/
intro.html
File metadata and controls
21 lines (21 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern JS Using ES6, NPM, Babel & Webpack</title>
</head>
<body>
<h1>Modern JS Using ES6, NPM, Babel & Webpack</h1>
<p>
We use a lot of JavaScript Tools to make a real world project where we apply ES6
features and also use the concepts of Asynchronous JavaScript. <br>
Now, in order for us to make a real world JavaScript Project, we will use tools that
make our lives easier as developers, and some of them are:
<ol>
<li>Webpack: to bundle together JavaScript Modules.</li>
<li>Babel: to convert ES6 Code into ES5.</li>
</ol>
</p>
</body>
</html>