tkraak / calculator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build a Calculator

tests coverage

Learn fundamental JavaScript via a three-part blog post series by @zellwk.

Simple Calculator

Getting Started

  • clone the seed repository:
    • git clone https://github.com/tkraak/calculator-seed.git calculator
    • cd calculator
  • install project dependencies:
    • npm install or yarn install
  • run the calculator app in your favorite browser at http://localhost:8080:
    • npm start
  • bundle a production build powered by webpack
    • npm run build
  • run tests with AVA
    • npm test

Optional but Recommended

  • push your work to your GitHub account:
    • create a repository named calculator on GitHub
    • git remote set-url origin https://github.com/USERNAME/calculator.git (ensure that USERNAME matches your GitHub username)
    • git push -u origin master
  • keep your project's tooling up-to-date by periodically pulling from the seed repository (upstream):
    • git remote add upstream https://github.com/tkraak/calculator-seed.git
    • git pull upstream master --rebase

About


Languages

Language:JavaScript 78.6%Language:CSS 14.1%Language:HTML 7.3%