
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
@flareapp/vite-plugin-sourcemap-uploader
Advanced tools
The Flare Vite plugin helps you send sourcemaps of your compiled JavaScript code to Flare. This way, reports sent using the `@flareapp/flare-client` will be formatted correctly.
The Flare Vite plugin helps you send sourcemaps of your compiled JavaScript code to Flare. This way, reports sent using the @flareapp/flare-client
will be formatted correctly.
Additionally, it automatically passes the Flare API key to @flareapp/flare-client
. This way, flare.light()
works without any additional configuration.
Check the JavaScript error tracking section in the Flare documentation for more information.
Looking for the Flare client? Go to the @flareapp/flare-client repo.
Install the plugin using NPM or Yarn:
yarn add @flareapp/vite-plugin-sourcemap-uploader
# or
npm install @flareapp/vite-plugin-sourcemap-uploader
Next, add the plugin to your vite.config.js
file:
import { defineConfig } from 'vite';
import flareSourcemapUploader from '@flareapp/vite-plugin-sourcemap-uploader';
export default defineConfig({
plugins: [
flareSourcemapUploader({
key: 'YOUR API KEY HERE'
}),
],
});
Run the vite build
command to make sure the sourcemaps are generated. You should see the following lines in the output:
@flareapp/flare-vite-plugin-sourcemaps: Uploading 12 sourcemap files to Flare.
@flareapp/flare-vite-plugin-sourcemaps: Successfully uploaded sourcemaps to Flare.
key: string
(required): the Flare API keybase: string
: the base path of built output (defaults to Vite's base path)runInDevelopment: boolean
: whether to upload sourcemaps when NODE_ENV=development
or when running the dev server (defaults to false
)version: string
: the sourcemap version (defaults to a fresh uuid
per build)removeSourcemaps: boolean
: whether to remove the sourcemaps after uploading them (defaults to false
). Comes in handy when you want to upload sourcemaps to Flare but don't want them published in your build.Publish a new release:
npm version patch
npm publish
Tag the release:
git tag VERSION git push origin VERSION
Replace VERSION with v
+ the version from package.json
— for example, v1.0.2
FAQs
The Flare Vite plugin helps you send sourcemaps of your compiled JavaScript code to Flare. This way, reports sent using the `@flareapp/flare-client` will be formatted correctly.
The npm package @flareapp/vite-plugin-sourcemap-uploader receives a total of 475 weekly downloads. As such, @flareapp/vite-plugin-sourcemap-uploader popularity was classified as not popular.
We found that @flareapp/vite-plugin-sourcemap-uploader 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
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.