https://github.com/gridaco/pyast-ts
python typescript (ts / js / jsx / tsx) ast parser using standard typescript package
https://github.com/gridaco/pyast-ts
Last synced: 9 months ago
JSON representation
python typescript (ts / js / jsx / tsx) ast parser using standard typescript package
- Host: GitHub
- URL: https://github.com/gridaco/pyast-ts
- Owner: gridaco
- License: mit
- Created: 2022-07-08T06:34:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-08T06:45:24.000Z (almost 4 years ago)
- Last Synced: 2025-09-29T04:31:48.695Z (9 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# Python TS (JS, JSX) Ast parser
This package is a python package for parsing ts ast using standard typescript module ported with python.
## Pre-installation
```sh
# yarn
yarn add typescript --dev --global
# npm
npm install typescript --save-dev --global
```
It will use locally installed typescript module.
## Installation
```sh
pip install pyast-ts
```
## Usage
WIP