Commit 074ff587 authored by malkoG's avatar malkoG
Browse files

Update express examples to use pnpm

parent d98a4df1
Loading
Loading
Loading
Loading

examples/express/.nvmrc

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
v20.17.0
+2 −4
Original line number Diff line number Diff line
@@ -20,15 +20,13 @@ Running the example
 2. Install dependencies:

    ~~~~ sh
    # optional
    nvm use
    npm i
    pnpm install
    ~~~~

 3. Start the server:

    ~~~~ sh
    npm start & npx @fedify/cli tunnel 8000
    pnpm start & pnpx @fedify/cli tunnel 8000
    ~~~~

 4. Open your browser tunneled URL and start interacting with the app.
+0 −1949

File deleted.

Preview size limit exceeded, changes collapsed.

+5 −5
Original line number Diff line number Diff line
@@ -25,13 +25,13 @@
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/node": "^22.5.1",
    "tsx": "^4.19.0",
    "typescript": "^5.5.4"
  },
  "dependencies": {
    "@fedify/express": "^0.2.0",
    "@fedify/fedify": "^1.2.7",
    "@logtape/logtape": "^0.8.0",
    "express": "^4.21.0"
    "@fedify/express": "workspace:",
    "@fedify/fedify": "workspace:",
    "@logtape/logtape": "catalog:",
    "express": "catalog:",
    "tsx": "catalog:"
  }
}