-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 914 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Shopping Cart Calculations</title>
</head>
<body>
<ol>
<li>Run <code>npm install</code></li>
<li>Run <code>npm start</code></li>
<li>Go to: <a href="http://127.0.0.1:8080">http://127.0.0.1:8080</a> If available. Otherwise follow instructions in console.</li>
<li>Watch console for results.</li>
</ol>
<script type="text/javascript" src="node_modules/systemjs/dist/system.js"></script>
<script>
System.config({
meta: {
format: 'cjs',
},
packages: {
'.': {
defaultExtension: 'js'
}
}
});
System.import('./public/main.js');
</script>
</body>
</html>