Code Monkey home page Code Monkey logo

typescript_utils's Introduction

typescript_utils

Typescript utils for GreCo

This enables you to transpile typescript to js for use with quickjs.

usage

Create a new rust project, add the following to the Cargo.toml

[dependencies]
quickjs_runtime = {git = "https://github.com/HiRoFa/quickjs_es_runtime"}
typescript_utils = {git = "https://github.com/HiRoFa/typescript_utils"}
futures = "0.3.6"

Then you can create a runtime and run typescript using the following code

use crate::TypeScriptPreProcessor;
use futures::executor::block_on;
use hirofa_utils::js_utils::facades::{JsRuntimeBuilder, JsRuntimeFacade};
use hirofa_utils::js_utils::Script;
use quickjs_runtime::builder::QuickJsRuntimeBuilder;

#[test]
fn test_ts() {
    let rt = QuickJsRuntimeBuilder::new()
        .js_script_pre_processor(TypeScriptPreProcessor::new())
        .build();

    let fut = rt.js_eval(
        None,
        Script::new(
            "test.ts",
            "(function(a: Number, b, c) {let d: String = 'abc'; return(a);}(1, 2, 3))",
        ),
    );
    let res = block_on(fut).ok().expect("script failed");
    //println!("res = {}", res.js_get_type());
    assert_eq!(res.get_i32(), 1);
}

typescript_utils's People

Contributors

andrieshiemstra avatar sreeniio avatar

Stargazers

Serg Alex avatar Spence avatar Suraj avatar Joep Meindertsma avatar Hydration avatar

Watchers

James Cloos avatar  avatar

Forkers

sreeniio

typescript_utils's Issues

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.