erp-snap-auth
v1.0.1
Published
Node.js library used for Auth within Erp Snap
Readme
Sample Usage
import { isAuthenticatedWithPsit } from "erp-snap-auth"
const isAuthenticated = await isAuthenticatedWithPsit("<your username>", "<your password>")
if (isAuthenticated) {
console.log("You are logged in")
} else {
console.log("You are not logged in")
}