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

kido-agent

v1.3.7

Published

The KidoZen's agent service.

Downloads

18

Readme

#KidoZen Agent Use this service to connect to the KidoZen platform and access to your Line of Business Systems even behind the firewall.

##Requirements You will need version 0.10.33 or greater of Node.js installed in your system. You can download it here.

##Installation You can install this module from npm (by executing npm install kido-agent -g in your terminal) or by cloning this repo in a directory. If you cloned this repo, run npm to install the dependencies

npm install

After that, you can execute node bin/server init to create a config.json file or just kido-agent init if you installed it globally with npm. Config sample:

{
    "name": "name-of-the-agent",	// for instance, it could be the machine's name.
    "credentials": {
        "user": "[email protected]",
        "password": "my-password",
        "marketplace": "https://my-company.kidocloud.com"
    }
}

Run the service executing:

node bin/server [--version] [--level error|warn|info|verbose|debug]

If you are planning to link local connectors then you have to run the agent under administrator's credentials.

Init scripts for Linux

If you want to install kido-agent as a service, you can execute kido-agent install-service or in Unix systems with the following

  • On Ubuntu/Debian $ sudo cp installService_UBUNTU.sh /etc/init.d/kido-agent && sudo chmod +x /etc/init.d/kido-agent

  • On Red Hat/CentOS $ sudo cp installService_REDHAT.sh /etc/init.d/kido-agent && sudo chmod +x /etc/init.d/kido-agent

Running your agent

Once you're done with the installation, you can run your agent with the following command:

kido-agent run

It will try to reach KidoZen's servers and authenticate against it's platform. If everything goes as expected, you should see Agent is ready. in your terminal.

In case you don't want to store your service credentials in KidoZen's platform, you can configure the service to use a local configuration json file. Go to your Marketplace -> Select the Admin panel -> Click on Enterprise API section -> Select Services on the sidebar and create or edit the service of your choice adding the file path to your configuration file in the Local configuration file path field. config example If you specify a relative path in your Marketplace, take notice that it will be relative from where your agent instance is running.

Connecting your agent through a proxy

If you want to run your agent behind a proxy, you should configure npm by executing the following commands in your terminal:

npm config set proxy http://username:password@proxyserver:port

and

npm config set https-proxy https://username:password@proxyserver:port

Once you are done executing both commands, you can check if your npm configuration is correct by running npm show kido-agent. If the command outputs a configuration file, you're now able to run kido-agent in your system.