rsnext/examples/with-couchbase/package.json
Elliot Scribner 6072afc83a
[examples] Added with-couchbase example (#27184)
This adds a simple `with-couchbase` example app complete with a check for successful connection (in `index.js`).

**Note:** To check the connection, this application runs a simple KV GET operation with a key that does not exist and expects a response of `document not found`. Any other response indicates a failure to connect.

Thank you!
2021-08-24 01:45:25 +00:00

14 lines
243 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"couchbase": "^3.1.3",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}