- Notifications
You must be signed in to change notification settings - Fork1
feathersjs-ecosystem/feathers-debugger-service
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Debugger service forFeathers Debugger.
Feathers debugger service exposes (/feathers-debugger) endpoint that can be used.
Install package with:
yarn add feathers-debugger-service
Register the service inapp.js orservices/index.js.
// app.jsconstdebuggerService=require('feathers-debugger-service');constapp=express(feathers());app.configure(services);app.hooks(hooks);// enable it only on developmentif(process.env.NODE_ENV!=='production'){// the service comes with default options predefined,// you can override it if you wish to, see Options belowapp.configure(debuggerService());}
If you want to trace all requests, add it toapp.hooks. You can also add it manually to only certain services you want to trace.
// app.hooks.jsconst{ trace}=require('feathers-debugger-service');module.exports={before:{all:[trace(),// < ----- in before "all" (first item)// ...],},// ...finally:{all:[trace()// < ------- in finally "all" (last item) MUST be included!],},};
Service configuration options
app.configure(debuggerService({/** * Expire item in storage after 900 seconds (15 min) */expireAfterSeconds:900,/** * Set filename if you want to persist data (uses feathers-nedb) */filename:'nedb.db',/** * If you want to expose UI on publicUrl and debug without chrome extension */ui:false,/** * Set custom url for debugger, used only if ui is `true` */publicUrl:'/debugger'}))
// hookstrace({captureParams:true,// captures hook.params, default is false (optional)captureResult:true,// captures hook.result, default is false (optional)captureQuery:true// captures hook.params.query, default is false (optional)})
Manually bumppackage.json, then push with exact version:
git commit -m"Release 1.3.6"About
Feathers Debugger service, use with Feathers Debugger.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.