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 🙏

© 2024 – Pkg Stats / Ryan Hefner

hlds-log

v1.1.2

Published

HLDS log is nodejs package for advanced usage of remote HLDS server logging.

Downloads

8

Readme

HLDS logger :bomb:

GitHub issues npm npm version

HLDS log is nodejs package for advanced usage of remote HLDS server logging.

HLDS log provides you:

  • safe text parsing from remote host
  • usage of server native events like bomb plants, defuse etc
  • event based system

Example of server event invoked by client chat:

log L 05/31/2020 - 11:08:13: "kalle<1><STEAM_ID_LAN><CT>" say "hello"

 { event: 'say',
  player:
   { name: 'kalle',
    id: '1',
    steamid: 'STEAM_ID_LAN',
    side: 'CT',
    message: 'hello' },
  time: { ss: '13', mm: '08', hh: '11' },
  date: { dd: '31', mm: '05', yy: '2020' } } 

Installation

HLDS log requires Node.js v6+ to run.

NPM module

$ npm install hlds-log

On the server side type

log on
logaddress 127.0.0.1 27050; [remote ip] [port]

And thats it.

Supported events

| Event | Supported | Note | |:-------------:|:------------------:|:------------------------------------------------------------------------------------------------------------------------------:| | hlds_connect | :white_check_mark: | Event fires on first log message from remote server, can be used with Event.once() | | raw | :white_check_mark: | Prints raw server message (default false) | | kill | :white_check_mark: | Event with information about killer and victim | | say | :white_check_mark: | Chat event with sender message and information | | say_team | :white_check_mark: | Team chat event with =|= | | enter | :white_check_mark: | Player connected to server | | connect | :white_check_mark: | Player is fully connected to the server | | join | :white_check_mark: | Player is switching team sides | | leave | :white_check_mark: | Player left the server | | round_end | :white_check_mark: | Indicates that round is over with specific reason ex. mission fail time, bomb explode, hostages rescued, other team is dead... | | end_score | :white_check_mark: | Last message before level is changed, contains team scores. | | server_action | :white_check_mark: | Actions triggered by server which affects every player ex. bomb explode, bomb defused etc | | player_action | :white_check_mark: | Action by player ex bomb pickup, drop, start defusing, stop defusing etc | | map_change | :white_check_mark: | Info who changed map and which map is next | | map_start | :white_check_mark: | Info when map is fully loaded | | suicide | :white_check_mark: | Player makes suicide (some plugins dont respect this type, but it will be implemented) | | shutdown | :white_check_mark: | Signal server shutdown | | log_off | :white_check_mark: | Server stopped logging | | kick | :white_check_mark: | Kick from the server | | cvarsDone | :white_check_mark: | All map cvars on map start (emit after specific time because game server sends randomly cvar values). Also cvars are always availble in Logger.cvarList property to get values.

Development

Want to contribute? Great! Also leave a :star: if you like this project.

Known bugs

See issues.

Todos

  • Write tests
  • Write more examples
  • Add TypeScript support

License

MIT