🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

typescript-transpiler

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

typescript-transpiler

Typescript Transpiler

0.0.1
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Typescript Transpiler

Typescript transpiler module.

Usage


import ts from "typescript-transpiler";

const tsCode = `
  interface Todo {
    userId: number;
    id: number;
    title: string;
    completed: boolean;
  }

  async function getTodo(url: string): Promise<Todo> {
    const result = await fetch(url);
    const data = await result.json();
    return data;
  }

  getTodo("https://jsonplaceholder.typicode.com/todos/1")
  .then((todo: Todo) => {
    const todoContainer: Node = document.createElement("pre");
    todoContainer.textContent = JSON.stringify(todo, null, 3);
    document.body.appendChild(todoContainer);
  });
`;

const jsCode = ts.transpile(tsCode, {
  target: "es6",
  allowJs: true,
  experimentalDecorators: true,
});


console.log(jsCode);

Keywords

Typescript

FAQs

Package last updated on 16 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts