remix-nlux
Version:
Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.
26 lines (22 loc) • 759 B
text/mdx
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
You can start by adding _NLUX_ and _nlbridge_ adapter to your React JS app using your favorite package manager.
At the root of your project, run the following command:
<Tabs groupId="package" queryString>
<TabItem value="npm" label="NPM">
```bash
npm install @nlux/react @nlux/nlbridge-react
```
</TabItem>
<TabItem value="yarn" label="Yarn">
```bash
yarn add @nlux/react @nlux/nlbridge-react
```
</TabItem>
<TabItem value="pnpm" label="PNPM">
```bash
pnpm add @nlux/react @nlux/nlbridge-react
```
</TabItem>
</Tabs>
This will install the `@nlux/react` and `@nlux/nlbridge-react` packages.