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

blockly-mooc

v0.0.97

Published

Blockly is a web-based, graphical programming editor. Users can drag blocks together to build an application. No typing required. Credit goes to these awesome [developers](https://code.google.com/p/blockly/wiki/Credits#Engineers) and a small army of [translators](https://code.google.com/p/blockly/wiki/Credits#Translators).

Downloads

69

Readme

Blockly 20 Hour Curriculum

Blockly is a web-based, graphical programming editor. Users can drag blocks together to build an application. No typing required. Credit goes to these awesome developers and a small army of translators.

This repository contains the source code for the Blockly based 20 hour curriculum and Hour of Code. Information about Blockly can be found in the wiki.

Quick Start

# Get the code
git clone https://github.com/code-dot-org/blockly.git mooc
cd mooc

# Machine setup (OSX with Homebrew)
brew install node
npm install -g grunt-cli

# Build
npm install
grunt

# Run with live-reload server
grunt dev
open http://localhost:8000

Project Specification

Both of these tutorials are found on code.org/learn or csedweek.org/learn. At the end of 1-hour, you’re sent to a Drupal thank you page that leads you back to code.org/learn

1 hour tutorial

  • 18 Maze puzzles + 6 videos, with celeb videos and licensed skins
  • No auth/identity/login, no state
  • Works on touch-screens, cross-browser (IE9+ required. IE8 highly desired)
  • Looks good on smartphones / small screens
  • Translated into at least spanish, and other non-bidi languages

20-hour curriculum

  • X stages, Y puzzles, Z videos
  • HAS student auth, teacher auth.
  • Student can see a map of where they are. Earn “trophies”
  • Teacher can see dashboard of student progress
  • Both students and teachers earn real-world rewards upon completion.
  • Works on touch-screens, cross-browser (IE9+ required. IE8 highly desired)
  • NOT optimized for smartphones / small screens. NOT translated

To Contribute

First, helpful links

  1. Web based tutorial
  2. Create a repo
  3. Forking
  4. Pull Requests

Style Guide

  • In general follow google's javascript style guide.
  • 80 character line length.
  • 2 space indent.
  • 4 space indent on long line breaks.

Quick Start

  1. Install and set up git
  2. Fork this repository (see upper right of page).
  3. Clone your new repo git clone https://github.com/<username>/blockly.git
  4. Change directory to the newly cloned repo with cd blockly
  5. Add this repo as a remote: git remote add codedotorg https://github.com/code-dot-org/blockly.git
  6. [Hack]
  7. Merge in most up-to-date changes, repeat as needed:
  8. git fetch codedotorg
  9. git merge codedotorg/master
  10. Push changes to your fork, repeat as desired.
  11. Initiate pull request on your fork's page, targeting this repository.
  12. Find the pull request you initiated and assign it to someone. This requires that you are a collaborator on the project.

Additional Tips

  • After submitting a pull request, start a new branch with git checkout -b new_feature. This allows you to keep working without affecting the pull request.
  • Once you have forked your own repository, you can makes as many commits, and push them to github, as you like. These will be pushed to your own repo and won't affect this shared repo.
  • Once you have issued a pull request any additional pushes you make to your repo will automatically update the pull request. This is like running gcl update multiple times for the same change list.
  • Use git rebase --interactive to clean up messy commits before issuing a pull request.
  • To use a global gitignore file read these instructions.