Skip to content

Commit 8108bb9

Browse files
committed
initial commit
1 parent b16a8f3 commit 8108bb9

File tree

7 files changed

+3669
-1
lines changed

7 files changed

+3669
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.DS_Store

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# web-dev-starter
1+
- You will need to have Node installed to start this environment. If you are not sure if you have Node installed run `node -v` in your terminal. If you do not see a version number output, install Node before moving on.
2+
- Install light-server locally and save it to your development environment by running `npm install lite-server --save-dev` in your terminal.
3+
- Run `npm run start` in your terminal to start the server.
4+
- Your browser will open at `localhost:3000`.

index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>JS Starter</title>
9+
<link rel="stylesheet" href="style.css">
10+
</head>
11+
12+
<body>
13+
<h1>Hello World!</h1>
14+
15+
<script src="script.js"></script>
16+
</body>
17+
18+
</html>

0 commit comments

Comments
 (0)