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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@masatomakino/gulptask-demo-page

v0.10.1

Published

demo html generator for gulp.js

Downloads

3,110

Readme

gulptask-demo-page

A CLI tool that generates demo HTML pages from specified JavaScript/TypeScript source files.

MIT License build test Maintainability Test Coverage

GitHub

Getting Started

Preparing Demo Source Files

Place your demo source files in the demoSrc directory. File names should have a demo_ prefix, like demoSrc/demo_sample.ts.

Generating Demo Pages

To generate demo pages, run the following command:

npx @masatomakino/gulptask-demo-page

This command will generate a set of HTML files that load the demo scripts, along with an index page, in the docs/demo directory.

CLI

you can generate demo pages from the CLI.

npx @masatomakino/gulptask-demo-page

See --help command for options.

Options

-W --watch

Enable watch mode. Default: false

--prefix

Specify the prefix for demo page filenames. Default: demo

--srcDir

Specify the directory containing demo source files. Default: ./demoSrc

--distDir

Specify the output directory for generated demo pages. Default: ./docs/demo

--body

Specify HTML tags to insert into the body. The specified content will be inserted within the <body> tag of the generated HTML.

--style

Specify CSS styles to apply to the demo page. The specified styles will be inserted within the <style> tag of the generated HTML. Example: "canvas{background-color:#000}"

--copyTargets [extensions...]

Specify file extensions to copy. Example: "png", "jpg", "jpeg", "obj". Default: "png", "jpg", "jpeg"

--externalScripts [url...]

Specify an array of script file URLs to load from external CDNs. Use this when loading external modules that cannot be bundled via npm. Example: "https://code.createjs.com/1.0.0/createjs.min.js"

--rule

Path to the webpack rule configuration file (e.g., webpack.config.js). If this option is specified, the specified configuration file will be loaded. If not specified, the default configuration file built into the package will be used.

--compileTarget

Corresponds to TypeScript's tsconfig.compilerOptions.target. See the official documentation for details. Example: es5

--compileModule

Corresponds to TypeScript's tsconfig.compilerOptions.module. See the official documentation for details. Example: es2020

--compileModuleResolution

Corresponds to TypeScript's tsconfig.compilerOptions.moduleResolution. See the official documentation for details. Example: node, node16, bundler

-h, --help

display help for command

npm script

  • build : build gulptask-demo-page binary.
  • watch : watch src dir and build binary.
  • exampleCLI : sample command for CLI user.
  • watch:exampleCLI : exampleCLI with watch mode.
  • testRun : run "gulptask-demo-page" generated by "build" command.
  • watch:testRun : run "gulptask-demo-page" with watch mode.

License

MIT licensed.