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

authenticated-docs

v1.0.13

Published

A simple Rails app with Devise authentication to serve static docs generated with a tool like MkDocs

Downloads

174

Readme

CircleCI Code Climate semantic-release

What is it

A simple Rails app with Devise authentication to serve static docs generated with a tool like MkDocs or Gitbook. Static html is served by HighVoltage customized to serve pathes containing whitespaces and dir pathes missing 'index' filename. RailsAdmin is used for users administration.

Usage

This assumes you have a docs-building project in Git, the built docs are in 'site' directory and you want to deploy it to Heroku.

  • Install Node.JS (v5.1 or higher)
  • Change current dir to your project: cd my-docs-project
  • Install authenticated-docs and couple additional tools:
npm install authenticated-docs gh-pages gulp gulp-debug
  • Copy docs files to authenticated-docs dirs:
./node_modules/.bin/gulp --gulpfile node_modules/authenticated-docs/Gulpfile.js --cwd ./ prepare
  • Publish the prepared dir to 'deploy' Git branch of your docs project:
./node_modules/gh-pages/bin/gh-pages -d node_modules/authenticated-docs -b deploy
  • Switch to the deploy branch:
# first time
git fetch && git checkout -b deploy origin/deploy
# next time
git fetch && git checkout deploy && git reset --hard origin/deploy
  • Create a my-docs app at Heroku (use whatever app name you like)
  • Provision the Heroku app with Sendgrid addon for sending auth emails like the one for 'forgot password' function
  • set up config vars at heroku based on .env.example file of this project
  • Push the deploy branch to Heroku
git remote add heroku https://git.heroku.com/my-docs.git # use proper path for your app
git push -f heroku HEAD:master
heroku run rake db:migrate
heroku restart

Local installation

This section is for those who want to make modifications to this app.

  • Clone the master repo: git clone https://github.com/artemv/authenticated-docs.git && cd authenticated-docs
  • Copy .env.example file to .env and change values as appropriate for your local env
  • Install Ruby 2.3.1 from https://www.ruby-lang.org/en/downloads/ or via RVM (https://rvm.io/)
  • Install Bundler and dependencies:
gem install bundler
bundle install
  • Install NPM dependencies: npm install
  • generate site docs to './site' dir
  • change Gulpfile.js to have const TARGET_DIR = '.' - the default value there is for prod usage
  • copy the docs pages to relevant dirs: ./node_modules/.bin/gulp prepare
  • run local webserver:
rails s
  • open the app in browser: http://localhost:3000