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

@travetto/transformer

Package Overview
Dependencies
Maintainers
1
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/transformer

Functionality for AST transformations, with transformer registration, and general utils

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-80.56%
Maintainers
1
Weekly downloads
 
Created
Source

const { doc: d, pth, Code, Section, Mod, inp, lib, Note } = require('@travetto/doc');

exports.text = d`

This module provides support for enhanced AST transformations, and declarative transformer registration, with common patterns to support all the transformers used throughout the framework. Transformations are located by ${pthsupport/transformer.<name>.ts} as the filename.

The module is primarily aimed at extremely advanced usages for things that cannot be detected at runtime. The ${Mod('registry')} module already has knowledge of all ${inpclass}es and ${inpfield}s, and is able to listen to changes there. Many of the modules build upon work by some of the foundational transformers defined in ${Mod('registry')}, ${Mod('schema')} and ${Mod('di')}. These all center around defining a registry of classes, and associated type information.

Because working with the ${lib.Typescript} API can be delicate (and open to breaking changes), creating new transformers should be done cautiously.

${Section('Custom Transformer')}

Below is an example of a transformer that uppercases all ${inpclass}, ${inpmethod} and ${inpparam} declarations. This will break any code that depends upon it as we are redefining all the identifiers at compile time.

${Code('Sample Transformer - Upper case all declarations', 'alt/upper/support/transformer.ts')}

${Note('This should be a strong indicator that it is very easy to break code in unexpected ways.')} `;

Keywords

FAQs

Package last updated on 06 Jul 2020

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