1.0.8 • Published 3 years ago
shortloop-node-test v1.0.8
Shortloop SDK for Node
shortloop-node-test provides client implementation of Shortloop SDK for express based Node applications.
Requirements
Current SDK version requires Node v16 or higher.
Installation
shortloop-node-test can be installed like any other npm package through npm:
$ npm install shortloop-node-testUsage
Once the package is installed, you can import the library using import or require approach:
import ShortloopSDK from 'shortloop-node-test'ORconst ShortloopSDK = require('shortloop-node-test')
Initialize the sdk
Example:const app = express(); const sdk = ShortloopSDK.init({ url: 'http://localhost:8080', applicationName: 'test-service-node', loggingEnabled: true (optional), }); app.use(express.json()); //any other middlewares app.use(sdk.capture());