This is a project to better understand the Fluent language and it's abilities within ServiceNow.
We first need to auth to ServiceNow.
- We'll need to prepare this project. To do so I've added git by running
git initin the project folder. - We'll need to have package.json so I've run
npm init -yto create that. - To use this we'll need Node. We'll also need a administrator user id and password. So make that first, note the username and password.
The auth command is
npx @servicenow/sdk auth --add <instance>in my case that'snpx @servicenow/sdk auth --add dev340226 - Lets initialize the project with
npx @servicenow/sdk init