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

nse-nettime-client

v1.6.0

Published

nettime remote control

Downloads

17

Readme

nse-nettime-client

Node.js CI

Unofficial client for the NSE time recording tool powered by node.js.

Installing

npm install -g nse-nettime-client

Command Line

nettime --url https://nettime.nse.de -u testuser -p mysecret book 123213.23.33.01 15.03.2017 08:00-16:00 -m "meeting"

Use nettime --help to list all commands and options.

General command line options

  • --url <url> Nettime server URL
  • -u, --user <login> User login
  • -p, --password <password> Password
  • -c, --config <configFile> loads the given config file (in json format) to define command line parameters

Configuration files

To define static options, you can provide a configuration file in json format. If no configuration file is given, the command tries to load the user default configuration file .nettime.json from the user home directory.

{
  "user": "mynettimeuser",
  "url": "https://nettime.example.org",
  "alias": {
    "pfefferminzia.consulting": "225487.01.15.02",
    "pfefferminzia.waiting": "345487.01.15.17"
  }
}

Task number aliases

Task numbers are sometimes a bit inconvenient. To improve booking performance you can define task number alieses as strings and use them in the booking command.

nettime -c myconfig.json book pfefferminzia.consulting 15.03.2017 08:00-16:00

You can directly define task number aliases in the configuration file. It is much easier to use the command line

nettime alias pfefferminzia.consulting 225487.01.15.02

The aliases are stored in the configuration file. If no configuration filename is given the user default file is used.

To list all defined aliases use

nettime alias

Best practice

Run the book command with the booking details

nettime book everyday.task 15.03.2017 8-16

... let the command prompt for your password.

If you want to publish more than on time period per command, simply type

nettime book everyday.task 22.02.2019 7-9 11-13:30 14-17

Be more expressive and add a message to your bookings

nettime book everyday.task 22.02.2019 7-9 11-13:30 14-17 -m "bug fixing"