An open API service indexing awesome lists of open source software.

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"

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.