Giter VIP home page Giter VIP logo

rt.js's People

Contributors

matteomarchiori avatar naums avatar stettberger avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

rt.js's Issues

Development roadmap

RT.js looks like an exciting project! I'm interested in exploring RT.js to orchestrate the handling of multiple data streams that are used to update multiple WebGL plots concurrently. I look forward to sharing any high-level results with you.

Are there plans to continue the development of RT.js? Are there any specific features that the authors are interested in adding to the framework?

Thanks!

Create a Webpack loader

It would be great if RT.js was bundled up as a Webpack loader so that a user can integrate RT.js seamlessly into their project. This would require creating a new NPM package named rtjs-loader (or rtjs-webpack-loader) that could be added to a project which would pass source code through the transpiler before being bundled by Webpack.

I'd be happy to get a prototype / reference implementation set up. Please let me know if you have any thoughts on this!

Consider proposed decorators for ES6 classes

There is a proposal to add support for decorators for ES6 classes. Instead of having to write code like this:

class MyTask extends Task {
    // @rtjs
    *run() {
        var i = 0;
        while (i < 1000000) {
           i++;
        }
        // implement your task here
    }
}

RT.js would allow for code to be written as:

class MyTask extends Task {
    @rtjs
    *run() {
        var i = 0;
        while (i < 1000000) {
           i++;
        }
        // implement your task here
    }
}

This could be implemented in the short-term using Babel's @babel/plugin-proposal-decorators plugin.

Please let me know what your thoughts are on this -- I'd like to help out!

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.