Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@chisquare-tech/jsx-polylog

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chisquare-tech/jsx-polylog

## JSX Polylog

latest
npmnpm
Version
0.2.13
Version published
Weekly downloads
39
-83.61%
Maintainers
2
Weekly downloads
 
Created
Source

Chisquare

JSX Polylog

Introduction

This is the javascript SDK for chisquare platform. It covers APIs for the following services:

  • Events
  • Files
  • Forms
  • Jobs
  • Logs
  • Messages
  • Motion
  • Webhooks

Supported Platforms

  • Browser
  • Node.js (Javascript/Typescript)

Installation

  • NPM
$ npm i @chisquare-tech/jsx-polylog
  • CDN

Usage & API

  • Initialization
import { init } from '@chisquare-tech/jsx-polylog';

init({
  // config
});
  • Events
  • identify
import { events } from '@chisquare-tech/jsx-polylog';

events.identify(id, payload, options);
  • track
import { events } from '@chisquare-tech/jsx-polylog';

events.track(id, payload, options);
  • Jobs
  • Schedule a new job
  import { jobs } from '@chisquare-tech/jsx-polylog'

  jobs.schedule(id, payload, options)
  • Files
  • Upload file
  import { files } from '@chisquare-tech/jsx-polylog'

  files.upload(name, files, options)
  • Forms
  • Submit form
  import { forms } from '@chisquare-tech/jsx-polylog'

  forms.submit(name, payload, options)
  • Webhooks
  • register webhook
  import { webhooks } from '@chisquare-tech/jsx-polylog'


  webhooks.register(name, payload, options)
  • Logs
  • identify
import { events } from '@chisquare-tech/jsx-polylog';

events.identify(id, payload, options);
  • track
import { events } from '@chisquare-tech/jsx-polylog';

events.track(id, payload, options);

Commands

DTS scaffolds your new library inside /src.

To run DTS, use:

npm start # or yarn start

This builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.

To do a one-off build, use npm run build or yarn build.

To run tests, use npm test or yarn test.

Custom Commands

# build and sync locally
$ node ./build --env=dev --sync=true

# build and publish
$ node ./build --env=prod --sync=true --version=x.x.x

Publish

$ git tag <version e.g v0.0.0>
$ git push origin <version>

License

FAQs

Package last updated on 22 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts