Skip to content

Commit abb074b

Browse files
authored
Vanilla Node JS server support for demo servers (#5)
This PR adds a base "vanilla" node sever implementation for each demo example. Also we enable a precommit step for running prettier in this PR.
1 parent c003a4b commit abb074b

25 files changed

+7951
-11
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
.DS_Store
33
.env
4-
.idea
4+
.idea
5+
.husky/_

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npm run lint:pretty-quick

0 commit comments

Comments
 (0)