0.2.6 • Published 7 years ago

rubricjs v0.2.6

Weekly downloads
9
License
MIT
Repository
-
Last release
7 years ago

Rubric.js

Rubric Underpins Better Reusability In Components

An es6 component, entity, system, framework with a minimal core. Rubric was designed with a verbose syntax and naming scheme that focuses on ease of use and clarity. This standpoint was largely inspired by Douglas Crockford's comment to the effect that code is meant to be "read by humans and incidentally run by machines".

It relies on powertrain for its' engine and uses babel and mocha in dev.

Example

There is a barebones 🍖 code example here. The is a running demo of it here, which is pretty boring visually.

Docs

There is a small jsdoc site here.

Better documentation will be coming to the readme very soon. 4/4/17

// Examples to follow shortly

Config File

module.exports = {
    // A useful way to pass things in to input adapters and other utilities
    // In the example implementation mentioned above these keys will have preventDefault() called when they are pressed
    preventKeys: ['up', 'down', 'space', 'left', 'right'],
    // These options will all be passed to Rubric's core engine, Powertrain
    engine: {
        playspeed: 1,
        fps: 60,
    },
    // More on this coming soon 4/4/17
};

Testing Rubric

Testing is done with mocha and chai.

$ npm run test

All tests are written against babel compiled output in the /dist directory.

Code coverage with nyc.

$ npm run coverage

Quick lcov.info generation for line highlighting in your editor via cowboy-hat.

$ npm run cowboy-hat

This will watch for file changes and generate lcovs against /src for relatively fast coverage line highlighting updates.

Feedback ✉️

It is greatly appreciated! 🎉 Please hit me up, I'd love to hear what you have to say!

messagethesmith@gmail.com

https://github.com/limeandcoconut

@limeandcoconut

Cheers!

TODO:

  • Proxy powertrain pause and stop methods through Rubric
  • Normalize type capitalization in docblocks
  • Normalize punctuation in errors
  • Cover the Single responsibility principle in readme

Canceled:

Plugins in general

  • Consider changing plugin identifiers to uid rather than constructor name
  • Allow plugins to register for multiple hooks
  • Switch to dt in engine. This takes advantage of extra renders

Usage Stats

NPM

License

MIT, see LICENSE.md for details.