Product Launch
A single npm package that adds a polished, production-ready AI chat widget to any website. React, Next.js, Express, or plain HTML — it just works, and most importantly, it remembers.
Marius Ndini
Founder · Jan 19, 2026
Adding AI chat to a product usually means:
That's a lot of engineering just to let users ask questions.
One package. Three ways to use it:
npm install @mnexium/chatimport { MnexiumChat } from '@mnexium/chat';
export default function App() {
return (
<>
<YourApp />
<MnexiumChat endpoint="/api/mnx" />
</>
);
}<script
src="/mnexium-chat.js"
data-endpoint="/api/mnx"
data-theme="dark"
></script>import { MnexiumClient } from '@mnexium/chat/core';
const chat = new MnexiumClient({ endpoint: '/api/mnx' });
chat.onMessage((messages) => renderYourOwnUI(messages));
await chat.send('Hello!');The widget is powered by Mnexium, which gives your AI:
You get a smarter assistant without building memory infrastructure.
Visit mnexium.com or mnexium.com/docs and click the chat button in the bottom right corner. That's @mnexium/chat in action.
One package. Any framework. Instant AI chat.