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

beatlab

v1.1.1

Published

Compose talks and workshops from an inventory of slides and modules.

Downloads

6

Readme

Build Status Standard - JavaScript Style Guide Code Climate - Health Code Climate - Health

Beatlab

Beatlab is a simple content manager built on top of reveal.js. It is useful for speakers who have a lot of content that they'd like to reuse and mix into new or customized talks or workshops.

Install

npm install -g beatlab

Usage

First you can define a module in the module path (see below).

Here's an example module manifest to get you started:

title: My Workshop
author: Dave Laribee
classes: [dark]
tags: ['exercise', 'practice', 'beginner']
description: Let's learn all about something new.
sections:
  - slide: title.md
  - slide: setup.html
  - slide: image1.png
  - slide: image1.gif
  - slide: image1.jpg
  - slide: image1.jpeg
  - module: /example-module/sub/sub/
  - slide: feedback.md
  - slide: P6yV9qY9g0I.youtube
  - module: /about/

From there, follow the help: beatlab --help

The main command, beatlab mix <module> <buildDir>, will read the named module and stitch together a slideshow from slides and referenced modules defined in the module.yml manifest. In <buildDir> you will find a complete reveal.js slide deck. The index.html file was rendered by Beatlab and contains your show.

If you have cloned this repo, this command will build an example module we use to test Beatlab:

$ rm -rf build && beatlab mix example-module ./build && open ./build/index.html

Configure Your Module Path

Modules contain sections which are slides or references to other modules. This allows you to keep your library of slides and modules private, if that's your thing.

Beatlab will automatically attempt to resolves modules based on $PWD/modules/.

Optionally, you can set a global module path using an enviroment variable $BEATLAB_HOME. Use this to point to another git repo containing reusable slides and modules.

# Put this in your .bashrc or .zshrc
export BEATLAB_HOME=/absoute/path/to/my/modules

# Or set the variable when running beatlab
BEATLAB_HOME=$HOME/my-modules beatlab mix my-talk ./talks/my-talk

Contributing

Pull requests are welcome. Please read "How to Contribute" before submitting a pull request.

License

Beatlab is licensed under the MIT license © 2017 Nerd/Noir, LLC.