You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

typescript-service-module

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-service-module

Typescript Transpiler

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

Typescript Services Module

Typescript service module - minified and exposed using es6 export.

Usage


import ts from "typescript-service-module";

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 15 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