1.8.7 • Published 7 months ago

nanit-camera v1.8.7

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Nanit Camera

Description

Installation

npm i --save nanit-camera

Usage

Supports both ESM and CommonJS

// esm
import nanit from 'nanit-camera'
// commonjs
const NanitClient = require('nanit-camera').NanitClient
const NanitService = require('nanit-camera').NanitService

Nanit API Service (recommended)

// esm
import { NanitService } from 'nanit-camera'

const nanitService = new NanitService()

nanitService
  .start()
  .then(() => {
    console.log('NanitService started')
  })
  .catch((err) => {
    console.log('NanitService start failed!')
    console.error(err)
    process.exit(1)
  })

process.on('SIGINT', () => {
  nanitService
    .stop()
    .then(() => {
      console.log('NanitService stopped')
      process.exit(0)
    })
    .catch((err) => {
      console.log('NanitService stop failed!')
      console.error(err)
      process.exit(1)
    })
})

Nanit API Client

// esm
import { NanitClient } from 'nanit-camera'
// commonjs
const NanitClient = require('nanit-camera').NanitClient

const nanit = new NanitClient()

// nanit.login...

License

MIT

1.8.2

7 months ago

1.6.4

8 months ago

1.8.1

7 months ago

1.6.3

8 months ago

1.6.2

8 months ago

1.6.0

8 months ago

1.7.3

7 months ago

1.7.2

7 months ago

1.7.1

8 months ago

1.7.0

8 months ago

1.5.1

8 months ago

1.8.7

7 months ago

1.8.6

7 months ago

1.6.8

8 months ago

1.8.5

7 months ago

1.8.4

7 months ago

1.8.3

7 months ago

1.6.5

8 months ago

1.4.5

9 months ago

1.4.4

9 months ago

1.5.0

9 months ago

1.4.3

9 months ago

1.4.2

9 months ago

1.4.1

9 months ago

1.4.0

9 months ago

1.3.5

9 months ago

1.3.4

9 months ago

1.3.3

9 months ago

1.3.2

9 months ago

1.3.1

9 months ago

1.3.0

9 months ago

1.2.9

9 months ago

1.2.8

9 months ago

1.2.7

9 months ago

1.2.6

9 months ago

1.2.5

9 months ago

1.2.4

9 months ago

1.2.3

10 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.2.0

10 months ago

1.1.13

10 months ago

1.1.12

10 months ago

1.1.11

10 months ago

1.1.10

10 months ago

1.1.9

10 months ago

1.1.8

10 months ago

1.1.7

10 months ago

1.1.6

10 months ago

1.1.5

10 months ago

1.1.3

10 months ago

1.0.1

10 months ago