
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@emberai/ember-widget
Advanced tools
Your dApp, as easy as texting a friend.
The Ember Widget is a simple to integrate chat widget that allows your users to use your dApp through a conversation with Ember, an AI assistant that takes actions.

You can install the ember-widget package using npm, yarn, or pnpm:
pnpm install ember-widget
Next, in your project, you can import the widget like this in either main.tsx or App.tsx:
import "ember-widget/dist/style.css";
import { EmberChat } from "ember-widget";
You also need to pass a configuration object to the EmberChat component, like this:
<EmberChat config={config} />
where config is an object with the following properties:
const config = {
secret: "process.env.YOUR_EMBER_API_KEY",
};
Note: Please message the Ember team to get your API key.
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'
import "ember-widget/dist/style.css";
import { EmberChat } from "ember-widget";
const config = {
secret: process.env.YOUR_EMBER_API_KEY,
};
const rootElement = document.getElementById('root');
if (rootElement) {
createRoot(rootElement).render(
<StrictMode>
<App />
<EmberChat config={config} />
</StrictMode>
);
} else {
console.error('Root element not found');
}
The config object passed to the EmberChat component supports the following properties:
secret (required): Your Ember Widget API keyAdditional configuration options may be available. Please refer to the latest documentation or contact the Ember team for more details.
If you encounter any issues while integrating or using the Ember Widget, try the following:
If problems persist, please contact the Ember support team for assistance.
To obtain an API key for the Ember Widget, please contact the Ember team directly. They will provide you with the necessary credentials to use the widget in your application.
If you need help or have any questions, please reach out to the Ember team at hello@emberai.xyz.
FAQs
Your dApp, as easy as texting a friend.
We found that @emberai/ember-widget demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.