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

grow

v0.0.59

Published

A declarative, file-based website generator for rapid website production.

Downloads

264

Readme

Grow SDK Build Status Downloads

A declarative, file-based website generator for maintainable, high-quality websites.

Slack

Quick start

# Download the packaged app to install.
curl https://install.growsdk.org | bash

# Initialize a site.
grow init codelab codelab
cd codelab

# Run the development server.
grow run

By using the installer from install.growsdk.org, you can leverage the autoupdater. If you'd prefer to build from source, see installation alternatives.

Getting the code

For contributors, Grow includes a setup script to help set up development environment for running the tests and executing the command line tools. The setup script installs pip, virtualenv, and all of the required libraries.

git clone [email protected]:grow/grow.git         # Clones this repo.
cd grow
./scripts/setup                                # Runs setup script.

Once installed, you can:

./scripts/test                                 # Runs tests.
./scripts/grow                                 # Runs `grow` command line program.

Installation alternatives

# Installs Grow in Python's site-packages directory.
sudo pip install grow

# Or, install Grow for a single user.
pip install --user grow

# If you have Grow already, upgrade it.
pip install --upgrade [--user] grow

# Or, build from source.
git clone [email protected]:grow/grow.git
cd grow
pip install -r requirements.txt
python setup.py install

Gotchas

libyaml must be installed on your system before installing PyYAML. On Mac, you can install libyaml using the following steps.

  1. Install brew
  2. brew install libyaml
  3. From the virtualenv created in your repository, run python -m easy_install pyyaml

Linux gotchas (Ubuntu)

From a fresh system, you may need a few things to build a Grow release from scratch:

sudo apt-get install python python-pip build-essential python-all-dev zip \
  libc6 libyaml-dev libffi-dev libxml2-dev libxslt-dev libssl-dev zip
sudo pip install --upgrade pip
sudo pip install --upgrade six

sudo pip install grow

Running tests

To run Grow's unit tests, run from the project's root directory:

./scripts/test                                # Runs unit tests.

License

The Grow SDK is released under the MIT License and it is lovingly maintained by the core team. Our mission is to bring joy to building and launching high-quality web sites.