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

larwan

v0.1.0

Published

An efficient low-level 2D tree-based rendering engine

Downloads

3

Readme

Larwan

Larwan is an efficient low-level 2D tree-based rendering engine.

Larwan is nowhere near completion yet, and probably isn't very stable.

Larwan designed for modern browsers only, making use of new features like Object.defineProperties to provide a painless and fast interface, that looks just like normal Javascript. As a result it works in Internet Explorer 9+, Firefox 4+, Chrome and Opera 12+. That means it supports all current major browsers. Note: Larwan hasn't actually been tested in some of these browsers, yet.

Installation

Larwan is distributed via NPM. To install Larwan for your project, run

$ npm install larwan --save

Since Larwan is extremely component-based, you will need to build your project (or part of it) with a CommonJS packing system such as Browserify.

Here's an example of using Larwan to draw a colorful rotating square.

var rendererFactory = require('larwan/renderer/factory');
var StageComponent = require('larwan/components/Stage');
var RectangleComponent = require('larwan/components/Rectangle');
var RotateComponent = require('larwan/components/Rotate');

var $canvas = document.getElementById('canvas');
$canvas.width = 500;
$canvas.height = 500;

var renderer = rendererFactory.create($canvas);
var stage = new StageComponent();

var square = new RectangleComponent();
square.width = 100;
square.height = 100;
square.x = 200;
square.y = 200;
square.fill = "red";

var rotator = new RotateComponent();
rotator.width = 500;
rotator.height = 500;

rotator.addChild(square);
stage.addChild(rotator);

renderer.on('update', function(dt) {
	rotator.angle += dt / 3600;
	square.fill.style.h += dt / 16;
	square.fill.applyOn(square.ctx);
});

renderer.stage = stage;
renderer.start();

Larwan can also headlessly render in Node with node-canvas.

Why?

Javascript's canvas system is extremely low-level, and not very fast, and as a result requires a lot of work and optimization to use for complex projects. Many other Javascript rendering engines try to provide everything, and end up being bloated and complicated. Larwan is simple to use, has a familiar syntax and usage, is very fast, and most importantly, is lightweight.

Additionally, Larwan isn't just geared to just games. It's great for any project using canvases.

Current Features

The following features are currently implemented in Larwan:

  • Standard components for most of CanvasRenderingContext2D's features (including transforms)
  • Complex color and style system (conversion between CSS-formatted colors, RGB(A), and HSL(A))
  • Extensible tree-based component system
  • Efficient rendering mechanism

Backlog

The following features still need to be completed:

  • Documentation!
  • Path component (allows creation of canvas paths)
  • Tweener (a powerful system to animate properties between values, supporting complex objects like colors)
  • Hit box component?
  • Proper dirty syncing for colors and other complex properties (modifying a color or style currently doesn't mark the object as dirty)
  • Cloning (creates a clone object with the same canvas and two-way property syncing with the base object)

Contributing

If you've found a bug or have an idea, feel free to create a new issue and provide some information. I'm working on this project in my free time, so please don't feel offended if I can't/don't implement your idea.

If you have some experience with canvas or Javascript optimization, or just want to help with something, I welcome your contributions and pull requests. This is probably the best way to get your 'new feature' implemented: make it work yourself and then create a pull request.

License

Larwan is licensed under the MIT license. See the LICENSE file for more info.