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

git-pages

v0.8.1

Published

Run your own github-like static pages

Downloads

111

Readme

git-pages

Run your own github-like static pages

NPM

Build status dependencies devdependencies semantic-release

Demo on Heroku - might be asleep.

We love Github pages - a great way to show small JS / HTML library in action. A lot of our public repos have them, but what about the private repos? There is no way (aside from buying Github Enterprise) to have privately hosted static pages from a list of your private repos. Unless you use git-pages! Just install, put names of repos into a config file and start using Node.

git-pages screenshot

The main index page shows list of pulled repos. Click on the "open" link to open the statically hosted site pointing at the desired branch. Click "pull" to fetch the latest code.

Install

  • Install globally npm install -g git-pages to run as a CLI in any folder
  • Install as a dependency npm install --save git-pages to start as NPM script from another project

Serve single repo

If you just need to pull a repo and statically serve a single file, use command line arguments. For example to serve the RevealJs presentation from https://github.com/kubawalinski/ndc2015-testjs you can execute this command

git-pages --repo [email protected]:kubawalinski/ndc2015-testjs.git --page slides-testjs.html

Run git-pages --help to see all options and shortcuts.

Configure

Create git-pages.configure.js file that exports the configuration options, for example, here are 2 repos to be hosted under http://localhost:8765/code-box and http://localhost:8765/local-angular.

module.exports = {
  repos: {
    'code-box': {
      // you can use full git@ url
      git: '[email protected]:bahmutov/code-box.git',
      // or the full HTTPS url
      // git: 'https://github.com/bahmutov/code-box.git',
      // pick the index page from the repo, supports HTML, Markdown, Jade
      index: 'demo.html' // default is index.html,
      exec: 'npm install' // command to execute after pulling latest code, optional
    },
    'local-angular': {
      git: 'bahmutov/local-angular-development',
      branch: 'gh-pages' // pick branch other than master
    },
    'local-folder': {
      // copy and serve a local folder instead of Git repo
      folder: '/path/to/foo'
    }
  },
  storagePath: '/tmp/git-pages', // local temp folder, optional, leave it to OS tmp dir
  port: 8765 // serving port, optional
};

For our example, see git-pages.config.js

Note: some hosting environments, like Heroku do not support pulling repos via SSH without additional setup, thus they require HTTPS git urls.

Run

Run after installing globally git-pages

Run after installing as a dependency (via package.json script)

"scripts": {
    "pages": "git-pages"
},
"dependencies": {
    "git-pages": "0.2.0"
}

Then you can start the git-pages server by simply npm run pages.

Run from the cloned folder

  • simple start node index.js or npm run start
  • run with automatic restart and watching source files npm run watch. Uses nodemon.

Todo

  • [ ] webhook to allow pulling on commit
  • [x] execute shell commands after pulling, for example npm install or bower install
  • [x] form full SSH or HTTPS urls from user / repo name pair

Small print

Author: Kensho © 2015

Support: if you find any problems with this library, open issue on Github

MIT License

The MIT License (MIT)

Copyright (c) 2015 Kensho

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.