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

mulesoft-docs-site-generator

v1.1.0

Published

An opinionated multi-repository static site generator for making documentation sites.

Downloads

1

Readme

= MuleSoft Documentation Site Generator

A multi-repository static site generator for creating MuleSoft's documentation site.

== Prerequisites

// What software do I need to have installed on my system? (e.g., Node 7, yarn, C development libraries?)

To run this site generator, you'll need https://nodejs.org/[Node.js] 7.9.0+ and https://yarnpkg.com/[Yarn] (an alternative package manager).

Node.js:: You can install Node.js from the official packages but we strongly recommend that you use https://github.com/creationix/nvm[nvm] to install and manage Node.

Yarn:: If you aren't already using https://yarnpkg.com/[Yarn], you can install it through npm: + [source, bash] npm install --global yarn

== How to Get Started?

// What do I need to do before executing the generator the first time? (e.g., run yarn)

First you need to install local dependencies with Yarn:

[source, bash] yarn install

Once all dependencies are installed, you'll be able to run the site generator.

== What to Expect?

// What does the generator do when I run it (at a high level)? (i.e., what should I expect to happen as it stands today)

Basically, the generator gets all AsciiDoc files from MuleSoft's git repositories and transforms them to HTML. It also produces a listing of all encountered files.

In details, the generator goes through all these steps:

. Reads a list a public git repositories (in site.js for now) and clones them. . Scans all files from all branches of all repositories and produce a stream of vinyl files (virtual in-memory files with metadatas). . Extracts coordinates from each files: component, module, version... . Reads AsciiDoc documents. . Converts AsciiDoc documents to HTML. . Change destination paths according to output rules. . Produces a report listing of all the scanned files in build/site/vinyl-collection-report.txt. The report looks like this: + [source]

https://github.com/organization/project-one.git/ branch-foo/ file.adoc branch-bar/ file.adoc https://github.com/organization/project-two.git/ master/ subfolder/ foobar.adoc

. Write vinyl files on disk in build/site.

== How to Build the Site?

// How do I execute the generator? (e.g., node site.js)

To build the site, you just need to run:

[source, bash] node site.js

== How to View the Site?

// Where can I find the generated site? How do I view it?

The "site" is located in build/site. Here, you'll find all the generated HTML files and the report in vinyl-collection-report.txt.