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

vistorian-bookmarkbrowser

v0.0.1-alpha

Published

Vistorian-bookmarkbrowser is a java script / (Typescript) library and a programming framework for interactive network visualizations with:

Downloads

4

Readme

Networkcube

Networkcube is a java script / (Typescript) library and a programming framework for interactive network visualizations with:

  • different link types
  • multiple links between nodes
  • link weights
  • temporal information on links (weigth, existence)
  • geographical positions attached to nodes

Networkcube is currently has been build with two goals in mind:

  • Ready-to-use visualizations that can be embedded in any web environment, e.g. to provide state-of-the-art visualizations to a specific group of stateholders or in a specific domain.
  • Rapidly prototype, deploy, and mature novel network visualizations.
  • Browser-based: networkcube runs entirely in the browser and does not use any server. None of your data is transmitted over the network nor stored on any server.

Networkcube is designed for research and is currently in a prorotype phase. However, the code is open and contributions are welcome. Please read the Wiki for more information or contact us: [email protected].

Each visualization in networkcube is its individual model and runs in an iFrame. Visualizations are hosted here on github and can be integrated in any website. So, the only thing your website has to care is importing a user's data into the browser (https://github.com/networkcube/networkcube/wiki/Importing-Data).

Demos and Example Projects

Networkcube has been used in the following projects:

  • Vistorian (http://vistorian.net): A visualization platform for the social network visualization.
  • ConnectoScope: A visualization platform for brain connectivity in neuroscience

A ready-to-use version can be found on http://networkcube.net.

Using Networkcube in your projects

  • Include the following link into your website: https://networkcube.github.io/networkcube/core/networkcube.js

  • Learn how to import data (https://github.com/networkcube/networkcube/wiki/Importing-Data) and how to use the network API (https://github.com/networkcube/networkcube/wiki/Query-API)

Components

The Networkcube framework conists of the following components and features:

  • Methods for loading network data from various formats, e.g. csv, json, GEDCOM, etc.
  • Importing data into the local storage of your browser. Data is not uploaded onto any server, unless you provide the server and program the backend. Technically, this is possible. Eventually this means that once you the visualization(s) with your data show up on your screen, no internet connection is necessary anymore. Data and events are handled completely locally on your machine.
  • an API to query the network you stored in the local storage, such as link weights for a certain period, a node's neighbors, links of a certain type. etc.
  • an initial set of common state-of-the-art network visualizations including Node-Link diagrams, Adjacency Matrices, Dynamic Ego network visualization, and a geographical Map. Visualizations are referenced via a URL and can hence sit anywhere in the internet. Once the visualization code is loaded all it needs to do is to query the data from the local storage.
  • A messenger to send events between all the visualizations in your browser: be they in windows, tabs, or iFrames. Messages pass simple interaction events such as node selection or changes to a time slider for temporal navigation.

Technical Specifications

  • Networkcube is written in TypeScript (https://www.typescriptlang.org), a typed language that compiles into JavaScript.
  • Data is stored in the browser's local storage, which currently is limited to 5MB. For projects on using larger networks, contact us.
  • Networkcube and the visualizations are optimized for Google Chrome. They have not been tested on other browsers. (Feel free to do so and let us know what happens).
  • Visualizations are generally written in WebGL using the THREE.js library (http://threejs.org). Certain parts of the visualizations are implemented in D3.

Run your own networkcube instance for development

  1. Clone this git
  2. Place it on a http server.
  3. Navigate to <your_serverpath>/networkcube/web/index.html* to run the local demo and test if all is working fine.
  • On my machine this looks like http://localhost/~bbach/networkcube/web