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

mupl

v0.9.15

Published

Quick Linux Meteor Deployments as a non-privileged user (eg. ubuntu)

Downloads

5

Readme

Meteor Up Lite

Quick Linux Meteor Deployments as a non-privileged user (eg. ubuntu) with no ssl support (not recommended for production).

Disclaimer

All credits should go to Arunoda and his team for his excellent contribution to the Meteor Community. This is a lite version of Meteor-Up (mup) and please feel free to share your comments, suggestions and issues on github. To prevent conflict with the original version the command will be mupl, so you can install and use both versions.

Prerequisite

Follow the steps from 'Additional Resources' section to pre-install Nginx before using mupl to configure and start the web server on port 80.

Your meteor app will be deployed in the following path:

/home/ubuntu/meteor/<your meteor app>

Installation

npm install -g mupl

Deployment Setup

Please follow the setup instructions from Meteor Up, and ignore all the ssl related configurations.

Example File

{
  // Server authentication info
  "servers": [
    {
      "host": "hostname",
      "username": "ubuntu",
      "password": "password"
      // or pem file (ssh based authentication)
      // WARNING: Keys protected by a passphrase are not supported
      //"pem": "~/.ssh/id_rsa"
      // server specific environment variables
      "env": {}
    }
  ],

  // Install MongoDB on the server. Does not destroy the local MongoDB on future setups
  "setupMongo": true,

  // WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
  "setupNode": true,

  // WARNING: nodeVersion defaults to 0.10.36 if omitted. Do not use v, just the version number.
  "nodeVersion": "0.10.36",

  // Install PhantomJS on the server
  "setupPhantom": true,

  // Application name (no spaces).
  "appName": "myapp",

  // Location of app (local directory). This can reference '~' as the users home directory.
  // i.e., "app": "~/Meteor/myapp",
  // This is the same as the line below.
  "app": "/Users/username/Meteor/myapp",

  // Configure environment
  // UPSTART_UID must be set
  "env": {
    "PORT": 3000,
    "UPSTART_UID": "ubuntu",
    "ROOT_URL": "http://myapp.com",
    "MONGO_URL": "mongodb://localhost:27017/MyApp",
    "MAIL_URL": "smtp://postmaster%40myapp.mailgun.org:[email protected]:587/"
  },

  // Meteor Up Lite checks if the app comes online just after the deployment.
  // Before mupl checks that, it will wait for the number of seconds configured below.
  "deployCheckWaitTime": 15
}

Additional Resources