Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
“I keep asking myself... Who could have done a thing like this?”
— Lester Nygaard, Fargo S01
You must initialize either TrackJS or Sentry on the page before calling any of the capture/logging functions, e.g:
<script>
window._trackJs = {
token: "YOUR_TOKEN_HERE"
}
</script>
<script type="text/javascript" src="https://.../tracker.js"></script>
<script type="text/javascript" src="./lester.js"></script>
<script>
var lester = new Lester();
lester.log('Now this will work!');
</script>
It is possible to use multiple instances within a single web page, each using whichever backend you prefer. For example:
const lester1 = new Lester({backend: Lester.TRACKJS});
const lester2 = new Lester({backend: Lester.SENTRY});
This way you can incrementally update code to use Lester and whichever backend you prefer.
Lester
Creates a new Lester instance, allowing you to pass in options.
const lester = new Lester({
backend: 'auto'
});
Name | Description | Default |
---|---|---|
backend | Backend to use. Set to 'sentry' or 'trackjs' to disable autodetection. | 'auto' |
capture
lester.capture(new Error('An error occurred.'));
TrackJS | Sentry |
---|---|
trackJs.track | raven.captureException |
attempt
lester.attempt
allows you to wrap any function to be immediately executed. Behind the scenes, Lester is just wrapping your code in a try...catch
block to record the exception before re-throwing it.
lester.attempt(function() {
foo(bar.baz);
});
TrackJS | Sentry |
---|---|
trackJs.attempt | raven.context |
wrap
lester.wrap
wraps a function in a similar way to lester.context
, but instead of executing the function, it returns a new function.
var myFunction = lester.wrap(function() {
foo(bar.baz);
});
myFunction()
TrackJS | Sentry |
---|---|
trackJs.watch | raven.wrap |
wrapAll
lester.wrapAll
wraps all functions within a given object.
lester.wrapAll(myModel);
lester.wrapAll(new Model());
TrackJS | Sentry |
---|---|
trackJs.watchAll | raven.wrap for each item |
log
Log data to the console.
lester.log('Some data');
TrackJS | Sentry |
---|---|
trackJs.console.log | raven.captureMessage |
set
Set additional metadata to be logged with errors.
lester.set('role', 'editor');
lester.set({ role: 'editor' });
TrackJS | Sentry |
---|---|
trackJs.addMetadata | raven.setExtraContext |
FAQs
In-page tracking facade
The npm package lester receives a total of 1 weekly downloads. As such, lester popularity was classified as not popular.
We found that lester demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.