The JavaScript Online Shell. https://fwdekker.com/
Go to file
Florine W. Dekker a6562f16ea
Shorten test output
2023-02-24 16:44:14 +01:00
src Shorten test output 2023-02-24 16:44:14 +01:00
.editorconfig Add .editorconfig and format accordingly 2019-11-06 15:07:56 +01:00
.gitattributes Migrate to Grunt as build tool 2019-10-26 19:29:00 +02:00
.gitignore Move build output to `dist/` 2020-05-03 20:52:28 +02:00
.nycrc.json Fix #51 2019-11-09 19:36:23 +01:00
Gruntfile.js Remove all inline styles 2021-04-24 22:29:23 +02:00
LICENSE Update dependencies, fix compatibility issues 2022-02-17 15:58:40 +01:00
README.md Add watcher for better builds 2020-09-30 15:00:57 +02:00
package-lock.json Shorten test output 2023-02-24 16:44:14 +01:00
package.json Shorten test output 2023-02-24 16:44:14 +01:00
tsconfig.json Update dependencies, fix compatibility issues 2022-02-17 15:58:40 +01:00

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