Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Feathers Debugger service, use with Feathers Debugger.

NotificationsYou must be signed in to change notification settings

feathersjs-ecosystem/feathers-debugger-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Debugger service forFeathers Debugger.

Intro

Feathers debugger service exposes (/feathers-debugger) endpoint that can be used.

Installation

Install package with:

yarn add feathers-debugger-service

Register 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());}

Add trace() to Hooks

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!],},};

Options

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)})

Deploy to npm

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

Stars

Watchers

Forks

Packages

No packages published

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp