Start building intelligent, self-healing automations right away
npm install --save nfig-sdk # or yarn add nfig-sdk
import { NfigClient } from 'nfig-sdk'; (async ()=>{ const nfig = new NfigClient({ apiKey: "YOUR_API_KEY", }); await nfig.createSession() const response = await nfig.act("Go to google.com") }())