https://github.com/jadjoubran/web-starter-vanilla
Web starter using Vanilla JavaScript & CSS for "Learn JavaScript"
https://github.com/jadjoubran/web-starter-vanilla
Last synced: 6 months ago
JSON representation
Web starter using Vanilla JavaScript & CSS for "Learn JavaScript"
- Host: GitHub
- URL: https://github.com/jadjoubran/web-starter-vanilla
- Owner: jadjoubran
- Created: 2020-04-06T13:55:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T08:34:34.000Z (12 months ago)
- Last Synced: 2025-03-27T22:47:47.113Z (7 months ago)
- Language: HTML
- Homepage: https://learnjavascript.online
- Size: 60.5 KB
- Stars: 27
- Watchers: 3
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web Starter Vanilla
Web starter using Vanilla JavaScript & CSS for learnjavascript.online
This boilerplate is provided at the end of the [Learn JavaScript](https://learnjavascript.online) course.
## Setup
**First time**
```bash
git clone https://github.com/jadjoubran/web-starter-vanilla.git
cd web-starter-vanilla
npm install
```**Then you can run the server**
```bash
npm run serve
```Browse to [localhost:8080](http://localhost:8080)
## Modules
This starter uses native browser modules with `sctipt type="module"`.
You can import other files, as long as you the path is correct, starts with a `./` and ends with `.js`.
Note that you cannot import libraries installed with NPM as bare modules are not supported by browsers yet.