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

generator-impressive

v0.0.2

Published

A Yeoman genenerator for presentations utilizing impress.js, markdown, code highlighting and more.

Downloads

14

Readme

generator-impressive Build Status

An impress.js presentation generator for Yeoman.

Features

  • Content of steps support markdown
  • Fenced code blocks support syntax highlighting
  • Utilizes gulp to run the presentation

Getting Started

Installation

$ npm install -g generator-impressive

Creating a New Presentation

Create a directory for your new presentation and change into the directory.

$ mkdir my-new-presentation
$ cd my-new-presentation

Now, use the impressive generator to create the presentation

$ yo impressive

and you will be asked for the title of your new presentation. It should generate the following structure:

bower.json
index.html
scss
bower_components
js
steps
config.json
node_modules
gulpfile.js
package.json

Running Your Presentation

$ gulp

Now open a browser and navigate to http://localhost:9000 to view your presentation.

Adding Presentation Steps (Content)

Each step is it's own markdown or HTML file in the /steps directory and is registered with the presentation in the /steps/steps.json file. However, you can easily create new steps and automatically have them registered with the following command; providing it with the new step's title:

$ yo impressive:step 'My First Content Step'

This will add a /steps/my-first-content-step.md file that you can then update with your content and automatically append the step to the presentation in the /steps/steps.json.

Controlling the Transitions

Transitions between steps are controlled via the /steps/steps.json file.

Adding Your Own Style

You can style your presentation using Sass. The main Sass file that is included is the /scss/main.scss file. Feel free to add styles there or add new Sass files and import them into the main.scss.

License

MIT License

Contribute

Feel free to send me a pull request or log an issue.

  • Code: https://github.com/softwarecraftsman/generate-impressive
  • Issues: https://github.com/softwarecraftsman/generate-impressive/issues

Credits

I have to give credit to the original generator-impress for my inspiration. This is my first nodejs module and I used the generator-impress as a starting point.