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

jskos-server-ui

v0.1.0

Published

[![CI](https://github.com/gbv/jskos-server-ui/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/gbv/jskos-server-ui/actions/workflows/test.yml) [![Coverage](https://codecov.io/gh/gbv/jskos-server-ui/branch/main/graph/badge.svg)](https:

Downloads

23

Readme

jskos-server-ui

CI Coverage GitHub release Node.js License

A Vue 3 application providing a web-based frontend for jskos-server instances. Browse JSKOS data such as terminologies, concepts, mappings, concordances, or annotations via any compatible JSKOS Server. The application is not tied to a specific instance and can connect to any server at runtime.

Features

  • Connect to any jskos-server instance at runtime
  • Overview dashboard for terminologies, mappings, concordances, and annotations
  • Runtime configuration without rebuilding

Technology

Project structure

src/
├── components/        # Shared UI components
├── composables/       # Reusable Vue composables
├── router/            # Vue Router configuration
├── stores/            # Pinia stores
├── utils/             # Utility functions
├── views/             # Page-level view components
└── assets/styles/     # Global styles based on Cocoda and Bootstrap
public/
└── config.json        # Runtime configuration
docker/
├── config.json        # Runtime config for Docker deployments
└── nginx.conf         # nginx configuration for the production container

Installation

Requires Node.js 22 or higher.

npm install

Development

npm run dev

Testing

Unit tests use Vitest with happy-dom and @vue/test-utils:

npm test            # Run all tests once
npm run test:watch  # Watch mode
npm run coverage    # Run coverage report

Coverage is reported to Codecov on every CI run.

Build

npm run build

The production build is written to dist/.

Configuration

Runtime configuration is loaded from public/config.json at startup. This file is not bundled into the application and can be replaced at deploy time without rebuilding.

{
  "defaultServer": "http://localhost:3000",
  "footer": {
    "links": [
      { "label": "Imprint", "url": "https://example.org/imprint" },
      { "label": "Privacy", "url": "https://example.org/privacy" },
      { "label": "Accessibility", "url": "https://example.org/accessibility" }
    ]
  }
}

| Property | Type | Description | | --------------- | ------ | ----------------------------------------- | | defaultServer | string | JSKOS Server URL loaded on startup | | footer.links | array | Footer navigation links (label + url) |

Deployment

Docker Compose (recommended for production)

A ready-to-use docker-compose.yml is included in the root of this repository. It starts jskos-server-ui, jskos-server, and MongoDB.

Quick start:

docker compose up -d

The UI is then available at http://localhost:8080, jskos-server at http://localhost:3000.

Configuration:

docker/config.json is mounted into the container at startup. Edit it to configure:

{
  "defaultServer": "http://localhost:3000",
  "footer": {
    "links": [{ "label": "Imprint", "url": "https://example.org/imprint" }]
  }
}

Docker (standalone)

To run only the UI against an existing jskos-server instance:

docker run -p 8080:80 \
  -v /path/to/config.json:/usr/share/nginx/html/config.json:ro \
  ghcr.io/gbv/jskos-server-ui:main

Contributing

Contributions are welcome. Please follow the existing code conventions:

  • All code, comments, and commit messages in English
  • Use Conventional Commits for commit messages (enforced by commitlint)
  • Use cocoda-sdk for all API calls (no direct calls to jskos-server)
  • Check jskos-vue and bootstrap-vue-next before writing custom UI components

Releases are automated via semantic-release on every push to main.

Related projects

License

MIT, see LICENSE for details.