0neMiss / vanilla-interview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vanilla-js-minimal

Build Status

Vanilla JavaScript starter with minimal dependencies and tools.

  • Includes a development environment with:

    • Support for es6 modules and hot reloading (via Parcel Bundler)
    • Compile to es5 to run across a wide range of browsers (via Babel)
    • Unit tests (via Jest)
    • Lint (via ESLint with their recommended settings)
    • Continuous Integration workflow with Github Actions
  • Styling with default fonts that look great across operating systems.

Run Local Dev Server

npm install  # install dependencies

npm start
# visit http://localhost:1234

Run Tests

npm test

Package project up in dist folder for release to server

npm run build

Run lint

npm run lint

About

License:MIT License


Languages

Language:HTML 41.5%Language:JavaScript 31.1%Language:CSS 27.4%