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 🙏

© 2026 – Pkg Stats / Ryan Hefner

currasco-eti

v0.2.13

Published

Currasco EtI template

Readme

EtI Curriculum - TEST

Steps to use the currasco commandline interface (CLI) to pull the (public) currasco-eti content and build it locally.

Install dependencies

  1. Make sure you have at least read access to the currasco project
  2. Install debian dependencies with the following:
sudo apt install build-essential libssl-dev pandoc atom
  1. Install useful atom packages manually or by running the following:
apm install markdown-preview-enhanced git-plus atom-mermaid intentions busy-signal linter linter-ui-default linter-remark atom-markdown-table-editor

Install and configure NVM

Run the following:

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" 
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"

Use NVM to install and select the correct version of nodejs

Open a new Terminal and run the following:

nvm install v8.9.0
nvm use v8.9.0

Install node dependencies for, and remove old versions of, currasco

Run the following:

npm install -g npm
npm install -g docsmith@beta
npm install -g react-native-scripts
npm uninstall -g currasco

Globally install currasco using npm

Run the following:

npm install -g currasco

Create and enter a workspace directory

Run the following:

cd ~/src
mkdir currascotest
cd currascotest

Clear out old workspaces

Run the following:

rm -rf @currasco
rm -rf ~/.content/*

Initialize content-as-code and pull the currasco-eti content package

Run the following:

currasco init

Allow react-native to monitor lots of files (for mobile build on Linux)

Run the following:

sudo sysctl -w fs.inotify.max_user_instances=524288
sudo sysctl -w fs.inotify.max_user_watches=5242880
#
### Do not run the following: 
# sudo sysctl -w fs.inotify.max_user_instances=1024
# sudo sysctl -w fs.inotify.max_user_watches=12288
#
### Or the following:
# sudo sysctl -w kern.maxfilesperproc=524288
# sudo sysctl -w kern.maxfiles=5242880

Build local Web ("preview") and mobile versions

Run the following:

currasco start

View the Web version

Browse to 127.0.0.1:8081 in your browser

View the mobile version

  1. Make sure your mobile device is on the same local network as your development machine
  2. Make sure the firewall on your development machine will allow incoming connections on ports 19000 and 19001
  3. Install expo on your mobile device ([Android] [iOS])
  4. Launch expo
  5. Click Scan QR Code
  6. Scan the QR code that appears on your Terminal window
  7. When the packager is done, the mobile app should appear on your mobile device

Edit content and test live-reload

  1. Launch atom and open one of the following files:
    • ~/src/currascotest/@currasco/preview/index.md
    • ~/src/currascotest/@currasco/preview/test-folder/index.md
  2. Edit the file and save your changes
  3. Note the linting feedback in atom
  4. Watch the web preview in your browser
  5. Watch the mobile version on your device