a simple toolkit to connect and control some equipments of hikvision.
install with npm:
npm install hikvision-api
install with yarn
yarn add hikvision-api
const nvr = new Nvr({
ip: '192.168.1.64',
user: 'admin',
password: '123456',
// proxy: 'http://127.0.0.1:8080',
version: 2
});
- if you face a cross-origin problem on the browser, please add the proxy
- original nvr may use version 1, the newer one may use version 2
await nvr.connect();
nvr.fetchChannels()
nvr.fetchUsers()
nvr.reboot()