npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

zkteco-terminal

v1.0.0

Published

A useful utility library

Downloads

62

Readme

ZKTecoTerminal

A Node.js client for communicating with ZKTeco standalone attendance devices (e.g., ZKTeco K14, K40, etc.) via TCP/IP. This package allows developers to interact with biometric attendance terminals by sending raw protocol commands, retrieving real-time logs, managing users, and accessing attendance records directly.

Features

  • TCP Socket Communication with ZKTeco devices
  • User Management (create, update, delete users)
  • Attendance Log Retrieval (chunked read, buffer parsing)
  • Real-Time Log Events support
  • Clear Logs & Free Buffers
  • Automatic Reconnection & Heartbeat Monitoring
  • Device Time Sync & Configuration

Installation

npm i zkteco-terminal

Usage Example

import zkClient from 'zkteco-terminal';


async function main() {
  const zkClient = new zkClient({ ip: '192.168.1.4', port:4370 });

  try {
    await zkClient.createSocket(async (status) => {
     
      if (status) {
        await zkClient.enableDevice();

        await zkClient.getRealTimeLogs(async (data) => {
          console.log('real time data', data);
        });
      }
    });


  } catch (err) {
    console.error('Failed:', err);
  } finally {
     zkClient.close();
  }
}

main();

Supported Methods

  • createSocket() – Connect to device
  • connectWithCmd() – Authenticate communication
  • getAttendances() – Get full attendance logs
  • getRealTimeLogs(cb) – Subscribe to real-time events
  • setUser(uid, userid, name, password, role, cardno) – Create or update user
  • deleteUser(uid) – Delete a user by UID
  • getTime() – Get device time
  • clearAttendanceLog() – Clear all logs
  • enableDevice() – Enable device for operation
  • disconnect() – Gracefully disconnect the socket

Compatibility

  • Tested with ZKTeco devices that use the ZKProtocol over TCP (e.g., K14, K40, X628-C, etc.)
  • Requires Node.js v14+

Getting Started

To get started:

  1. Fork the repository
  2. Clone your fork
    git clone https://github.com/shax26/zkteco-terminal.git
    
    

Executing ZK Protocol Commands

The library includes an executeCmd function designed to run ZK protocol commands easily.

You can explore the full list of available commands by visiting the official ZK Protocol documentation. Once you've found the command you need, simply pass it into the executeCmd function like so:

executeCmd('YourCommandHere');


Notes
-----

- Ensure your ZKTeco device is accessible over LAN and the correct IP/port is set.
- This package communicates directly over raw TCP, not via HTTP or SDK.
- Not affiliated with ZKTeco.

License
-------

MIT