Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TurboWarp/cloud-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: TurboWarp/cloud-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: username-validate-prod
Choose a head ref
Loading
Showing with 438 additions and 842 deletions.
  1. +4 −2 .github/workflows/node.js.yml
  2. +3 −1 .gitignore
  3. +111 −723 package-lock.json
  4. +1 −0 package.json
  5. +8 −2 public/index.html
  6. +18 −0 src/Client.js
  7. +1 −0 src/ConnectionError.js
  8. +5 −0 src/ConnectionManager.js
  9. +1 −1 src/config.js
  10. +3 −0 src/index.js
  11. +19 −0 src/room-filters/index.js
  12. +92 −37 src/server.js
  13. +76 −0 src/stats.js
  14. +23 −0 src/tests/username.test.js
  15. +0 −57 src/tests/validators.test.js
  16. +73 −2 src/username.js
  17. +0 −17 src/validators.js
6 changes: 4 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -9,9 +9,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: 20.x
- run: npm ci
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
node_modules
# Private filter list
private.filter
# Blocked project IDs
filter.txt
# Logs
logs
logs
Loading