A tool for people curious about the React Server Components protocol rscexplorer.dev/
rsc react

maybe add ci

+36
+20
.github/workflows/ci.yml
··· 1 + name: CI 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + pull_request: 7 + branches: [main] 8 + 9 + jobs: 10 + test: 11 + runs-on: ubuntu-latest 12 + steps: 13 + - uses: actions/checkout@v4 14 + - uses: actions/setup-node@v4 15 + with: 16 + node-version: 22 17 + cache: npm 18 + - run: npm install 19 + - run: npm test 20 + - run: npm run build:versions
+16
.tangled/workflows/ci.yaml
··· 1 + engine: nixery 2 + when: 3 + - event: ["push", "pull_request"] 4 + branch: ["main"] 5 + 6 + dependencies: 7 + nixpkgs: 8 + - nodejs 9 + 10 + steps: 11 + - name: install 12 + command: npm install 13 + - name: test 14 + command: npm test 15 + - name: build versions 16 + command: npm run build:versions