Coder Social home page Coder Social logo

deku's Introduction

Deku

This project is still a work-in-progress

Create composable, reactive views that use implement a virtual DOM system similar to React. The benefits of using Deku over React:

  • Smaller at roughly 5kb
  • Readable source
  • No globals or global state
  • Easily testable components without needing Jest
  • Isolated components that don't need a global to be mounted
  • It doesn't create virtual events
  • It doesn't support old IE
  • Easily add plugins
  • Events instead of mixins
  • Render methods can be imported instead of inline reducing the need for JSX

It has similar capabilities to React:

  • Components return a virtual tree using a render method
  • Batched rendering using requestAnimationFrame
  • Optimized tree diffs
  • Server-side rendering
var component = require('segmentio/deku');

// Simple button component.
var Button = component({
  onClick() {
    this.setState({ clicked: true });
  }
  render: function(dom, state, props) {
    return dom('button', { onClick: this.onClick }, [props.text]);
  }
});

// Our main app.
var App = component({
  render(dom, state, props) {
    return dom('div', { class: "App" }, [
      dom(Button, { text: props.buttonText })
    ]);
  }
});

// Plugins are super easy to add and don't require
// a separate build to get them.
App.use(styleHelper);

// Returns a Mount.
var scene = App.mount(document.body, {
  buttonText: 'Click Me!'
});

// We can set the props which triggers a render next frame.
scene.setProps({
  buttonText: 'Do it...'
});

// And then unmount it when we're done.
scene.remove();

deku's People

Contributors

anthonyshort avatar lancejpollard avatar

Watchers

James Cloos avatar hunslater avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.