@clburlison/crowdstrike-falcon
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

falconjs

Version Build Maintenance License

NPM

CrowdStrike Falcon API JS library for the browser and Node

Experimental

falconjs is an open source project, not a CrowdStrike product. As such it carries no formal support, expressed or implied.

Installation

npm install crowdstrike-falcon

Exemplary use

import { FalconClient, FalconErrorExplain } from "crowdstrike-falcon";

const client = new FalconClient({
    cloud: "us-1",
    clientId: "",
    clientSecret: "",
});

await client.sensorDownload
    .getSensorInstallersCCIDByQuery()
    .catch(async function (err) {
        alert("Could not fetch CCID: " + (await FalconErrorExplain(err)));
    })
    .then((value) => {
        console.log("my CCID: ", value);
    });

Documentation

Readme

Keywords

Package Sidebar

Install

npm i @clburlison/crowdstrike-falcon

Weekly Downloads

23

Version

0.3.0

License

MIT

Unpacked Size

19 MB

Total Files

2345

Last publish

Collaborators

  • clburlison