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

@farberg/reveal-template

v1.0.66

Published

Reveal.js template for Dennis' lectures

Downloads

3,036

Readme

reveal-template

This is a helper package to simplify the generation of reveal.js presentations using Markdown files only. It contains a set of (optional) reveal plugins to simplify the creation of lectures.

It is primarily used by myself so it is quite opinionated and makes certains assumptions on the structure of the lecture. Markdown files should follow a certain naming pattern:

  • Single level: 00 - Introduction.md, 01 - Bla.md, etc.
  • Two level: 00 - Introduction.md, 01 - Topic 1.md, 01a - Sub-Topic 1.md, 01b - Sub-Topic 1.md, 02 - Topic 2, etc.

The resulting files can be published on any web server and do not require server-side components. Everything is rendered by the browser.

Requirements and Installation

To use this project, node.js and npm are required.

Create a new lecture:

  • Create a new folder and initialize an empty node.js project (e.g., npm init --yes)
  • Add this package as a dependency (npm i @farberg/reveal-template)
  • Read the documentation below

Usage

  1. Create a file package.json describing your presentation (e.g., like this one).
  2. Create an HTML file (e.g., index.html, see npm.html for an example)
  3. Create your presentation in Markdown
    • See this file for an example).
    • Using npm (npm install @farberg/reveal-template), see npm.html for an example.

Plugins

Click on the link for documentation

Tested and working

| Name | Description | | -------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | | reveal-plugin-dir-tree.js | Create a zip from existing files for download and display a tree of files | | reveal-plugin-html-example.js | Renders a code example as innerHTML of a target element | | reveal-plugin-prefix-with-base-url.js | Prefixes the pages base URL to an element's inner Text. Optionally converts it to inline code. | | reveal-plugin-show-attribution.js | Shows credits on the lower right corner | | reveal-plugin-show-code-snippets.js | Shows a code snippet after loading it from a file. | | reveal-plugin-show-qr-code.js | Display a QR code and link to the presentation on the slides slides | | reveal-plugin-show-title.js | Create a title slide automatically | | reveal-plugin-show-toc.js | Create a table of contents automatically (run npx dennis_generate_toc > generated_toc.html to generate) |

Non-functional, untested or in development

| Name | Description | | ------------------------------------------------------------------------------ | ---------------------------------------------------- | | reveal-plugin-modify-font-size.js | Add keybindings + and - to change base font size | | reveal-plugin-toggle-solutions.js | Show of hide solutions |

Conversion to PDF

Run npx dennis_generate_pdfs to create PDFs. Requires a running Docker daemon.

Local Development

To start developing on this repository:

  • Check out this repository (git clone https://github.com/pfisterer/reveal-template.git)
  • Run npm install to install required dependencies
  • Start a web server from the root directory (e.g., npx http-server -p 5500)
  • Open http://localhost:5500/docs/local-dev.html

Publish a new version (maintainers only)

# Bump version in `package.json`

# Run this command to publish on npm
npm publish --access public