The JavaScript Online Shell.
https://fwdekker.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 weeks ago | |
---|---|---|
src | 3 weeks ago | |
.editorconfig | 3 years ago | |
.gitattributes | 3 years ago | |
.gitignore | 3 years ago | |
.nycrc.json | 3 years ago | |
Gruntfile.js | 2 years ago | |
LICENSE | 1 year ago | |
README.md | 3 years ago | |
package-lock.json | 3 weeks ago | |
package.json | 3 weeks ago | |
tsconfig.json | 1 year ago |
README.md
fwdekker.com
The source code of my personal website.
Development
Requirements
Setting up
# Install dependencies (only needed once)
$> npm ci
Building
# Build the application in `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the application in `dist/` for deployment
$> npm run deploy
# Remove build files
$> npm run clean
Testing
# Run tests
$> npm test
# Run tests with coverage
$> npm run coverage