
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
@recordreplay/sourcemap-upload
Advanced tools
A utility library for uploading sourcemaps to Replay for use while replaying recordings.
Provides an NPM library allows uploading sourcemaps to Replay's servers so that they can be used when viewing recordings.
This module will search the given filepaths for JS files and sourcemap files,
and then it will use the file
field of the sourcemap or the //# sourceMappingURL=
comments in the JS to find pairs of sourcemap and JS file.
If no sourcemaps are being found, consider running the function with verbose
mode enabled, or with DEBUG=recordreplay:sourcemap-upload
set in the environment.
Most likely, if sourcemaps are not being found, they either:
file
property referencing their associated JS file//# sourceMappingURL=
Either of these links is sufficient, so if changing the generated code to include a
//# sourceMappingURL=
comment is not what you want, including file
is enough,
and vice-versa.
This module exports a named uploadSourceMaps
function with the following options:
interface Options {
/**
* The files/directories to search for sourcemaps. All files that match the
* 'extensions' list and fail to match 'ignore' will be searched for
* sourcemap JSON or `//#sourceMappingURL=` coments in order to find pairs
* of generated-file + sourcemap, and the sourcemap will be uploaded.
*/
filepaths: Array<string> | string;
/**
* To allow for tracking and browsing of maps that have been uploaded, we
* require uploaded sourcemaps to have an overall group name associated with
* them. This could for instance be a version number, or commit hash.
*/
group: string;
/**
* The API key to use when connecting to Replay's servers.
* Defaults to `process.env.RECORD_REPLAY_API_KEY`.
*/
key?: string;
/**
* Run all of the local processing and searching for maps, but skip uploading them.
*/
dryRun?: boolean;
/**
* The set of file extensions to search for sourcemap-related data.
* Defaults to [".js", ".map"].
*/
extensions?: Array<string>;
/**
* The set of pattern for files to ignore when searching for sourcemap-related data.
*/
ignore?: Array<string>;
/**
* Set the directory that relative paths should be computed with respect to.
* The relative path of sourcemaps is included in the uploaded entry, and will be
* visible in the UI, so this can be used to strip off unimportant directories in
* the build path. Defaults to `process.cwd()`.
*/
root?: string;
}
FAQs
A utility library for uploading sourcemaps to Replay for use while replaying recordings.
The npm package @recordreplay/sourcemap-upload receives a total of 0 weekly downloads. As such, @recordreplay/sourcemap-upload popularity was classified as not popular.
We found that @recordreplay/sourcemap-upload demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.