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

pod-server

v0.3.4

Published

Solid pod server, composed from various independent TypeScript modules.

Downloads

11

Readme

pod-server

Build Status

Coverage Status

Greenkeeper badge

Solid server package that bind together solid-idp, wac-ldp, websockets-pubsub, and the data-browser.

Running on localhost, NSS compat mode

git clone https://github.com/inrupt/pod-server
cd pod-server
git checkout dev
npm install
cp config.json-local-nss-compat config.json
cp -r ../../solid/node-solid-server/.db .
cp -r ../../solid/node-solid-server/data .
npm run build
DEBUG=* npm start

Architecture

The Solid Spec Protocols

This server implements version 0.7 of the Solid spec. This is a diagram of the layering of protocols:

protocol layers

Functions of the server

Regardless of the layering of protocols, we have a layering of functional components in the software, which looks as follows:

Functional components of inrupt's pod-server

It shows how the different functional units of the server (persistence, auth, data interface, etc.) depend on each other.

Code modules

This server delegates some of its functions to npm modules it depends on.

solid-idp

The solid-idp module implements the webid-oidc functionality. Note that a pod-server makes no explicit distinction between local and remote users. In terms of organization, each user gets an identity and a storage space, and that identity is the first to be granted full access to the empty storage space upon its creation. But in technical terms the IDP and the storage are almost entirely separate. The only two connections between them is that the IDP proves control of a profile URL (web id) that points to a document on the storage space, and that the IDP's authorize dialog will edit the list of trusted apps in that profile whenever the user authorizes a new third-party web app.

The IDP exposes a koa handler to the pod-server. Apart from that, it sends out emails for verifications and password reminders. It also exposes an event when an account is created or deleted, and its dialogs will do xhr edits to trustedApps.

wac-ldp

The wac-ldp module is the central part of the pod-server. It exposes a koa handler, which pod-server consumes. It also emits change events, which the pod-server used to know when to call the Hub#publish method from the websocket-pubsub module (see below). Apart from that, it exposes a number of interfaces which the websockets-pubsub module consumes:

  • a function to check updates-via tickets
  • a function for checking whether a given webId has read access to a given resource

websockets-pubsub

The websockets-pubsub module exposes a 'Hub' object, with a websocket-onconnection handler and a publish method

html statics

Although some pod providers may choose to replace static/index.html with the data-browser. This is the content which the pod-server serves when a user visits the pod-server with their browser.

Published under an MIT license by inrupt, Inc.

Contributors:

  • Michiel de Jong
  • Jackson Morgan
  • Ruben Verborgh
  • Kjetil Kjernsmo
  • Pat McBennett
  • Justin Bingham
  • Sebastien Dubois