
Research
/Security News
Miasma Mini Shai-Hulud Hits ImmobiliareLabs npm Packages
Miasma Mini Shai-Hulud hits @immobiliarelabs Backstage plugins, targeting GitLab and LDAP auth packages on npm.
@rlse/widget
Advanced tools
Multi-framework release notes widget for rlse.dev. Works with React, Vue, Angular, Svelte, Astro, and vanilla JavaScript.
npm install @rlse/widget
import { RlseWidget } from '@rlse/widget';
function App() {
return (
<>
<YourApp />
<RlseWidget orgSlug="your-org-slug" />
</>
);
}
<script setup>
import { RlseWidget } from '@rlse/widget/vue';
</script>
<template>
<RlseWidget org-slug="your-org-slug" />
</template>
import { RlseWidgetComponent } from '@rlse/widget/angular';
@Component({
imports: [RlseWidgetComponent],
template: `<rlse-widget orgSlug="your-org-slug"></rlse-widget>`
})
<script>
import { RlseWidget } from '@rlse/widget/svelte';
</script>
<RlseWidget orgSlug="your-org-slug" />
---
import { RlseWidget } from '@rlse/widget/react'; // or vue/svelte
---
<RlseWidget orgSlug="your-org-slug" client:load />
<script>
window.rlseWidgetConfig = {
orgSlug: 'your-org-slug',
};
</script>
<script async src="https://rlse.dev/widget.js"></script>
| Option | Type | Description |
|---|---|---|
orgSlug | string | Your organization slug from rlse.dev |
| Option | Type | Default | Description |
|---|---|---|---|
appSlug | string | — | Filter to a specific application |
trigger | 'auto' | 'manual' | 'both' | 'manual' | How the widget opens |
position | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left' | 'bottom-right' | Button position |
theme | 'light' | 'dark' | 'auto' | 'auto' | Color theme |
limit | number | 10 | Max changes to display |
triggerLabel | string | "What's New" | Button text |
modalTitle | string | "Release Notes" | Modal header |
primaryColor | string | #3b82f6 | Accent color (hex) |
autoShowAfter | number | 7 | Days before auto-popup triggers again |
A floating trigger button that opens a modal. Best for standalone pages.
import { RlseWidget } from '@rlse/widget';
<RlseWidget
orgSlug="acme-corp"
appSlug="dashboard"
trigger="both"
position="bottom-right"
theme="auto"
limit={5}
triggerLabel="What's New"
modalTitle="Release Notes"
primaryColor="#3b82f6"
/>;
An embeddable panel for sidebars or dedicated pages. Great for dashboards.
import { RlseWidgetEmbed } from '@rlse/widget';
<RlseWidgetEmbed
orgSlug="acme-corp"
appSlug="dashboard"
showHeader={true}
showFooter={true}
/>;
A compact dropdown for navigation bars. Perfect for user menus.
import { RlseWidgetMenu } from '@rlse/widget';
<RlseWidgetMenu
orgSlug="acme-corp"
appSlug="dashboard"
triggerLabel="What's New"
/>;
## Trigger Modes
- **`manual`** — Floating button always visible; click to open. Unread badge shows unseen count.
- **`auto`** — No button; modal auto-opens on first visit after new releases, respecting `autoShowAfter`.
- **`both`** — Floating button plus auto-popup on new releases.
## How "New" Tracking Works
The widget uses browser `localStorage` to track seen changes — no backend or login required.
- **Key**: `rlse_widget_{orgSlug}_seen`
- **Value**: Array of seen change IDs
- Per-device tracking (phone and laptop tracked independently)
## Styling
Use `primaryColor` to match your brand:
```tsx
<RlseWidget orgSlug="acme-corp" primaryColor="#ff6b6b" />
Widget not appearing
orgSlug is correctAuto-popup not triggering
rlse_widget_* keys to reset seen stateautoShowAfter is set as expectedlocalStorage data stays entirely client-sideFAQs
Multi-framework release notes widget for rlse.dev - React, Vue, Angular, Svelte
The npm package @rlse/widget receives a total of 36 weekly downloads. As such, @rlse/widget popularity was classified as not popular.
We found that @rlse/widget demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Miasma Mini Shai-Hulud hits @immobiliarelabs Backstage plugins, targeting GitLab and LDAP auth packages on npm.

Security News
Rolldown paused Rust React Compiler integration after a 5MB binary size increase raised concerns about shipping React-specific code to all Vite users.

Security News
/Research
Mini Shai-Hulud expands into the Go ecosystem after hitting LeoPlatform npm packages and targeting GitHub Actions workflows.