Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/compiler

Package Overview
Dependencies
Maintainers
1
Versions
300
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/compiler

Node-integration of Typescript Compiler with advanced functionality for collecting AST transformers, and detecting changes in classes and methods.

  • 0.7.4
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

travetto: Compiler

Install: primary

$ npm install @travetto/compiler

This module expands upon typescript, with supplemental functionality:

  • Read tsconfig.json from the project directory to provide
  • Supports on-the-fly compilation, nothing needs to be compiled ahead of time
  • Enhanced AST transformations, and transformer registration
    • All AST transformations are single-file based, and runs without access to the TypeChecker
  • Intelligent caching of source files to minimize recompilation
  • Support for detecting changes in sources files at runtime
  • Allows for hot-reloading of classes during development
    • Utilizes es2015 Proxys to allow for swapping out implementation at runtime

Additionally, there is support for common AST transformation patterns to facilitate all the transformers used throughout the framework. Transformations are defined by support/transformer.<name>.ts as the filename. The schema for a transformer is:

Code: Sample transformer, registration and execution

  export class CustomerTransformer {
    after: ['base'],
    phase: 'before'|'after', // The phase as defined by Typescript's AST processing
    transformer: (context: ts.TransformationContext) => {
       return (file: ts.SourceFile) => {
         ... modify source file ...
         return file;
       }
    }
  }

Keywords

FAQs

Package last updated on 10 Aug 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc