Add brainstorm server with WebSocket support, helpers, and tests

WebSocket server for real-time browser communication during brainstorming
sessions. Includes browser helper library for event capture, shell scripts
for server lifecycle management with session isolation and persistent
mockup storage, and integration tests.

Co-Authored-By: Drew Ritter <drew@ritter.dev>
This commit is contained in:
Jesse Vincent
2026-03-06 12:55:18 -08:00
parent 1c53f5deb6
commit 02b3d7c96d
9 changed files with 1674 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "brainstorm-server-tests",
"version": "1.0.0",
"scripts": {
"test": "node server.test.js"
},
"dependencies": {
"ws": "^8.19.0"
}
}