Gathering detailed insights and metrics for @exceptionless/node
Gathering detailed insights and metrics for @exceptionless/node
Gathering detailed insights and metrics for @exceptionless/node
Gathering detailed insights and metrics for @exceptionless/node
npm install @exceptionless/node
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (88.57%)
JavaScript (8.07%)
HTML (1.57%)
Svelte (0.73%)
Vue (0.67%)
CSS (0.39%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
60 Stars
708 Commits
22 Forks
8 Watchers
1 Branches
10 Contributors
Updated on Jan 20, 2025
Latest Version
3.1.0
Package Id
@exceptionless/node@3.1.0
Unpacked Size
387.33 kB
Size
88.59 kB
File Count
52
NPM Version
10.2.4
Node Version
20.11.1
Published on
Mar 29, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Using Exceptionless in the NodeJS environment is similar to using it in other JavaScript environments.
To use this package, your must be using ES6 and Node 18+.
npm install @exceptionless/node --save
While your app is starting up, you should call startup
on the Exceptionless
client. This ensures the client is configured and automatic capturing of
unhandled errors occurs.
1import { Exceptionless } from "@exceptionless/node"; 2 3await Exceptionless.startup((c) => { 4 c.apiKey = "API_KEY_HERE"; 5 6 // set some default data 7 c.defaultData["mydata"] = { 8 myGreeting: "Hello World" 9 }; 10 11 c.defaultTags.push("Example", "JavaScript", "Node"); 12});
Once that's done, you can use the Exceptionless client anywhere in your app by
importing Exceptionless
followed by the method you want to use. For example:
1await Exceptionless.submitLog("Hello world!");
Please see the docs for more information on configuring the client.
For improved stack traces launch your Node app with the
--enable-source-maps
command line option.
1node app.js --enable-source-maps
If you need help, please contact us via in-app support, open an issue or join our chat on Discord. We’re always here to help if you have any questions!
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 1/24 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
28 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More