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

holon

v0.0.7

Published

Leight-weight DSL-free dual-side composable reactive components

Downloads

1

Readme

table of content

This is WORK IN PROGRESS, do not use

holon

[back to top]

Codeship Status for coding-amigos/holon

Leight-weight DSL-free dual-side composable reactive components holon

If you want to find holons, search npmjs.org for ecosystem:holon or browse holons

demo

[back to top]

☠☠☠ section is under construction ☠☠☠

usage

[back to top]

var componentName = require('componentName'); // encapsulates best practice boilerplate for certain kinds of projects
var componentAPI = componentName({
  container      : `domNodeOrSelector`, // maybe it should always be a dom node
  options        : {/* configuration options */}, /* some configuration depending on the project that should be built*/
  data           : `modelOrStreamOrEventEmitter`, // to initialize or update stuff /* some webpage specific data or e.g. RESTful endpoints to fetch the data */
  children       : [ // this is optional, because maybe the component can use defaults if not provided /* inject some components to be used to render page in detail - if not provided might fallback to default components */
    { '__title'  : titleComponent   },
    { '__list'   : listComponent    },
    { '__sidebar': sidebarComponent }
  ]
});

☠☠☠ section is under construction ☠☠☠

install with npm do:

npm install holon

install with git do:

git clone https://github.com/coding-amigos/holon.git

api

[back to top]

☠☠☠ section is under construction ☠☠☠

authors

[back to top]

jobs

[back to top]

There is more jobs in the source code marked with // @TODO: <job description> and eventually some jobs might be listed under the holon issues page, which can also be accessed through waffle.io.

  • @TODO: Publish it as a component
    • http://modernweb.com/2014/02/17/introduction-to-the-component-javascript-package-manager/
    • https://github.com/component/component/wiki/Components
  • @TODO: Create a Github Page
    • https://github.com/jekyll/jekyll
    • https://help.github.com/categories/20/articles
  • @TODO: Include Testing via "Specification Driven Development" using gherkin dsl & TESTEM
    • https://github.com/cucumber/cucumber/wiki/Gherkin
    • https://github.com/airportyh/testem
  • @TODO: Add 'Leight-weight DSL-free dual-side composable "BEMified" reactive components' + more verbose description to README.markdown
  • @TODO: Edit all 'under construction sections' in README.markdown (at least add "@TODO's" for them to the "Jobs Section")
  • @TODO: Add CHANGELOG File
  • @TODO: This section should instead list all the TODO-Branches currently available + a link to the "TODO Description file in that branch"
    • The README.markdown in that branch could list the description under the "jobs section"
  • @TODO: add workflow description
    • http://www.wolfe.id.au/2014/02/01/getting-a-new-node-project-started-with-npm/
    • http://quickleft.com/blog/creating-and-publishing-a-node-js-module
    • http://www.devthought.com/2012/02/17/npm-tricks/
  • @TODO: find convention for branch names, e.g. {CA-1}{SPIKE}{jeet.gs} and COMMIT NAMES

☠☠☠ section is under construction ☠☠☠

contribute

[back to top]

PREPARE SYSTEM

  • install git if it is not yet installed on your system
  • install node if it is not yet installed on your system
  • open a terminal on your system and navigate to your favourite workspace folder
    • (you might need to prefix some of the following commands with sudo to make them work)

START PREPARING HOLON PROJECT

  • git clone https://github.com/coding-amigos/holon.git
  • npm install
  • npm update
  • stylus -u jeet -u nib -rupture -w holon.styl
  • load main HTML project file by opening and pointing your browser to:
    • a server that serves the ./DEMO/dev.html file (e.g. localhost:3000/DEMO/dev.html)
    • or doubleclick ./DEMO/dev.html file to open it directly in your browser
      • HINT: this only works with CORS disabled. In order to do so:
        • mac osx open -a Google\ Chrome --args --disable-web-security
        • linux google-chrome --disable-web-security
        • windows chrome.exe --disable-web-security

... HAPPY CODING :-)

repository

[back to top]

  1. ./
  • Contains meta data about this component
  1. ./DEMO
  • Contains a file that demonstrate how to use this component in your project
  1. ./DEPENDENCIES
  • Contains all internal dependencies used by this component, but not yet published to their own repositories
  1. ./RELEASE
  • Contains production ready versions of this component which are used by examples in ./DEMO
  • CDNs/REGISTRYs: v0.0.3@git, v0.0.2@npm
  1. ./SOURCE
  • Contains all the source files for this component
  1. ./SOURCE/media
  • Contains fonts, images, videos, music and the like, used by this component
  1. ./SPECIFICATION
  • Contains the vision, roadmap, open jobs and tests for completed jobs regarding this component
  1. ./@TODO/ (currently private)
  • Contains some experimental stuff for inspiration to "spike" the use of certain technologies to develop this component further

license

[back to top]

...more information