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

as3-to-ts

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

as3-to-ts

Tool to help porting ActionScript 3.0 code to TypeScript.

  • 0.3.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
Maintainers
1
Weekly downloads
 
Created
Source

as3-to-ts

A tool that helps porting as3 codebase to typescript

This fork has major improvements parsing and emitting code. It has also a "bridge" feature that allows implementing custom node visitors.

This project is a fork of simonbuchan/as3-to-typescript, which is a fork of the original as3-to-typescript implementation.

Installation

Option 1: via npm::

npm install -g as3-to-ts

Option 2: building the source:

Make sure you have Node v6+ installed.

  • Clone the repository
  • Run npm link

You should have as3-to-ts now globaly available in your commandline.

Usage

as3-to-ts <sourceDir> <outputDir> [--commonjs] [--bridge createjs] [--interactive] [--overwrite]

Options:

  • --commonjs: export .ts files using CommonJS's import style.
  • --bridge [name]: use custom visitor. implemented under src/bridge/[name]
  • --overwrite: force overwrite of previously-converted files.
  • --interactive: if you've manually changed a generated .ts file, you'll be asked if you want to overwrite it or not.

Known issues

  • super calls on constructor need to be moved as the first call after conversion.
  • having a comment on extends statement causes infinite loop parsint the .as file.
  • having break without a semicolon results in infinite loop parsing the .as file.
  • having a method without access level will throw Error: invalid consume. (usually this is result of bad copy & paste without renaming the class constructor)
  • having inline multiline comment break the parser (var i = (/*comment*/true))
  • namespaces can't have TypeScript keywords, such as enum, class, etc. (not an issue if transpiled using --commonjs)
  • multiple property definitions generate invalid syntax (public var velocityX:Number, velocityY:Number;)

Note

This tool will not magicly transform your as3 codebase into perfect typescript, the goal is to transform the sources into syntacticly correct typescript, and even this goal is not perfectly respected. It also won't try to provide javascript implementation for flash libraries.

However unlike most attempts that I have seen this tool is based on a true actionscript parser, and so should be able to handle most of as3 constructs and greatly ease the pain of porting a large code base written in as3 to typescript.

Keywords

FAQs

Package last updated on 21 Oct 2016

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