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

our-journey

v1.6.5

Published

Our Journey interactive student journey creator. | © 2018 The Open University (IET-OU).

Downloads

346

Readme

Build status — Travis-CI js-semistandard-style Browserify our-journey - on Npmjs License: GPL-3.+

Our Journey interactive student journey creator

Our Journey is an interactive online tool to chart the highs and lows of student journeys.

The aim is to produce a simple and accessible structure for students to represent the events that occurred in their study and their experience of these. It is being developed for use by all students and different institutions. The design is informed by research conducted to understand the challenges faced by disabled students at the Open University (see Coughlan & Lister, 2018 and Coughlan, Ullmann & Lister, 2017).

Screenshot 1 - the editor.

A physical version of the tool has been developed by Tim Coughlan and Kate Lister of the Institute of Educational Technology (IET) and Glen Darby in LTI Translation, with HEIF funding.

This prototype online version is being developed in the Institute of Educational Technology (IET), at The Open University.

Author: Tim Coughlan, IET.

Use

To integrate or extend our-journey:

npm i our-journey

Install .. build .. test

Use Node and npm to aid development:

npm install
npm run build
npm test

Other commands to serve and fix the code etc.:

npm run        # List lifecycle and other scripts.

npm start
npm run pa11y-ci
npm run fix
npm run jsdoc  # Generate documentation in /jsdoc/ directory.
npx eslint src # browserslist-based test.

API

URL parameters

  • . . . . ?demo=1 — Load an empty demonstration journey;
  • . .?layout=scol — Display with a single-column layout;
  • . . ?edit=float — Use a floating editor;
  • . ?j=base64:... — Load a journey represented in the URL parameter as Base64-encoded JSON;
  • . . . .?zoom=75 — Zoom the display of the whole tool (50 .. 95%);
  • . . . ?bg=wheat — Set the background colour;

Javascript

console.log('Inspect:', require('our-journey'));

require('our-journey').app.run({ assetUrl: '..' /* ... */ });

Example

Via unpkgbrowse — production CDN:

<link href="https://unpkg.com/our-journey@^1/style/journeystyle.css" rel="stylesheet" />

<div id="our-journey-tool">
  <p class="no-js"> Sorry! This tool requires Javascript. </p>
</div>

<script src="https://unpkg.com/our-journey@^1/dist/our-journey.js"></script>

<script>
  require('our-journey').app.run({
    containerSelector: '#our-journey-tool'

    // Other options ...
  })
  // Returns a Promise.
  .then(function (value) {
    console.warn('Loaded', value);
  });
</script>

See the configuration options.

Changelog

See the release notes in the changelog.

Contributing

See the contributing guide.

GDPR

Details of GDPR / privacy actions can be found in Bug #51.

License

Distributed under the GNU General Public License, version 3 or later.

Copyright © 2018 The Open University. All rights reserved. (Institute of Educational Technology)