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

arc.extension-api

v1.1.1

Published

An extension for Arc that adds http API endpoints to microservices

Downloads

42

Readme

Arc | API Extension

Build Status Maintainability Test Coverage

An API service for Arc that allows HTTP traffic to communicate with microservices and an interface to view microservice runtime details.

Install

npm install arc.extension-api

Use

const arc = require(`arcms`);
const extension = require(`arc.extension-api`);

const options = {
  port: 8080
};

arc.addExtension(extension, options);

What You Get

  • An interface to view runtime details and states for the microservices Arc is running at localhost:8080
  • HTTP endpoints for your microservices.
    • If you had a microservice named "My Microservice", you could now run it using localhost:8080/my-microservice
    • You can send also data to using query strings, localhost:8080/my-microservice?hello=world

Additional Information

File Tree

| JavaScript | | --- | | /index.js | | /support/authentication.js | | /support/check_api_options.js | | /support/create_express_server.js | | /support/find_microservice.js | | /support/get_all_microservice_stats.js | | /support/get_microservice_data.js | | /support/get_one_microservice_stats.js | | /support/listen_to_requests.js | | /support/render_template.js | | /support/usage_reporter.js |

Environmental Variables

| Variable | Purpose | | --- | -- | | ARC_APP_NAME | A name for your App | | ARC_GITHUB_REPO | A github repo url | | ARC_GITHUB_WIKI | A github wiki url | | ARC_TRAVIS_BADGE_URL | A travis badge url | | ARC_TRAVIS_BADGE_IMG_URL | A trais badge image url | | ARC_CODECLIMATE_BADGE_URL | A code climate badge url | | ARC_CODECLIMATE_BADGE_IMG_URL | A code climate badge image url | | ARC_CODECLIMATE_COVERAGE_BADGE_URL | A code climate coverage url | | ARC_CODECLIMATE_COVERAGE_BADGE_IMG_URL | A code climate image url | | ARC_PIVOTAL_TOKEN | A pivotal tracker token | | ARC_PIVOTAL_PROJECT | A pivotal tracker project |