Generate API Key
Sign up on our developer console and create a new API keyInstallation
Prerequisite: Please install Node.js (version 20 or higher) before proceeding.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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")
}())