This is the Operating Systems class initial project. See http://www.labouseur.com/courses/os/ for details.
- Clone the
iprojectN
branch whereN
is the project number - Run
gulp
- Open
index.html
in Chrome
- Install the npm package manager if you don't already have it.
- Run
npm install -g typescript
to get the TypeScript Compiler. (You may need to do this as root.)
- Run
npm install
to install
No tests because triple slash imports don't run on Node
Jest is a Javascript testing framework for unit tests. To run the tests:
- Run
npm run test
Gulp automates the compilation process from Typescript to Javascript. It also automatically compiles on file saves.
npm install gulp
to get the Gulp Task Runner.npm install gulp-tsc
to get the Gulp TypeScript plugin.gulp
to watch files for changes.