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

puzle-shapeshifter

v0.4.3

Published

With Shapesifter, merge markdown documents, handlebars templates and static html themes into static html files and / or pdf documents. The tool is currently usable in state.

Downloads

4

Readme

Puzle Shapeshifter

About

With Shapeshifter, merge markdown documents, handlebars templates and static html themes into static html files and / or pdf documents.

The tool is currently usable in state.

We work hard to provide you soon lot of cool features. Do not hesitate to share your remarks or issues in dedicated channel.

License

MIT

Roadmap

  • ~~Generate HTML files from gulp tasks~~
  • ~~CLI support~~
  • ~~Add default theme~~
  • ~~ToPdf option~~
  • Add options to select export
    • To PDF
    • To Html
  • ~~Add custom options with dedicated config file per project~~
  • ~~Add a watch option~~
  • Add an auto reload option
  • Add a CLI command to init a config file
  • Add custom options with dedicated config file per folder
  • Fix issues:
    • PhantomJS Font Face support: not working yet
  • Add themes support
  • Add themes :
    • Reveal.JS
    • HTML5 Wrapper...
  • Add plugins support

Prerequisites

  • Node > 6.2
  • Npm
  • Gulp

Install

Using as CLI tool

$npm i -g puzle-shapeshifter

Development

Install vendors

$npm install

Install global tools

$npm run installGlobal

Test

Running tests

$npm test

Usage

Shapeshifter is provided as binary.

The application takes all documents in the source folder and compiles them into a dist folder.

Shapeshifter can be executed like so :

shapeshifter [options]

CLI Options

  • -h, --help Output usage information
  • -V, --version Output the version number
  • -s, --src <item> The markdown files location, _toCompile by default
  • -d, --destination <item> The generation destination, _compiled by default
  • -t, --templates <item> The templates location, _templates by default
  • -w, --watch Watch each change and compile the document

Use a config file

You can use a config file to define the compilation options.

First, create a shapeshifter.config.js file at your root project directory with this structure :

module.exports = {
    src:  './_toCompile/',
    dest: './_compiled2',
    templateLocation: './_templates',
    watch: false,
    pdfConfig: {"format": "A3",
        "border": {
            "top": "25mm",            // default is 0, units: mm, cm, in, px
            "right": "20mm",
            "bottom": "15mm",
            "left": "20mm"
        }}
};

The config file options:

module.exports = {
    src:  '',   // the markdown files location, `_toCompile` by default
    dest: '',   // the generation destination, `_compiled` by default
    templateLocation: '', // the templates location, `_templates` by default,
    watch: true, // enable the watcher : compile automatically the document when changes occurred
    pdfConfig: {} // the pdf compilation options, see https://github.com/marcbachmann/node-html-pdf#options
};

For the pdf options, see the node-html-pdf documentation.

The config file override the default options.

Warning : the options given as command arguments override these defined in the config file.

Create a template

The template are located by default in the _templates folder. They follow the handlebars format.

In your template, you can add variables which be replaced during compilation step.

The frontmatter variables are prefixed by data.* expression.

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <title>{{data.title}}</title>
</head>
<body>

    <header>I'm the Header</header>
    <div>{{data.title}}</div>
    <div>{{{data.randomvar}}}</div>
    <article>I'm the article

        {{{content}}}

    </article>
</body>
</html>

The content variable define the markdown document body.

The other variables are linked to the markdown frontmatter.

You are free to create variables you need.

Create a compilable document

The compilable documents are located in the _toCompile folders by default.

The frontmatter variable template is required. Define here the template file used during the compilation step, without the *.hbs suffix.

Do not forget to add all frontmatter variables used by the template you have defined.

You can inject the data defined in the frontmatter in the content section.

Example:

    ---
    title: I'm the title
    author: Cédric Charière Fiedler
    template: page
    randomvar: random
    ---
    
    ## First title {{{data.title}}}
    
    **I'm Bold**