Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/okcompute/es-ctags
CTags compatible generator for ES6
https://github.com/okcompute/es-ctags
Last synced: about 1 month ago
JSON representation
CTags compatible generator for ES6
- Host: GitHub
- URL: https://github.com/okcompute/es-ctags
- Owner: okcompute
- Fork: true (sergioramos/jsctags)
- Created: 2016-01-12T02:33:35.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-05T22:09:56.000Z (over 6 years ago)
- Last Synced: 2024-09-05T10:38:41.353Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 447 KB
- Stars: 28
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Note: I don't use and maintain this package anymore. ES support has evolved and I'm now using Unitiversal Ctags (https://ctags.io) for my development requirements.
# es-ctags
[![](https://img.shields.io/travis/okcompute/es-ctags.svg)](https://travis-ci.org/okcompute/es-ctags)
[![](https://img.shields.io/npm/v/es-ctags.svg)](https://www.npmjs.com/package/es-ctags)
[![npm downloads](https://img.shields.io/npm/dm/es-ctags.svg?style=flat-square)](http://npm-stat.com/charts.html?package=es-ctags&from=2016-03-8)CTags generator built/for ES6 using [tern](https://github.com/marijnh/tern). The
goal of this tool is to replicate the same CLI of the original *CTags* as close
as possible. This should enable *ESCtags* usage with tools like *CtrlP*,
*TagBar* and many others.## Origin
This software is derived/inspired from
[jsctags](https://github.com/ramitos/jsctags). The source code to convert tern
ast to tags is mostly the same.## install
```sh
npm install -g es-ctags
```## usage
```sh
Usage: es-ctags [options] [others...]
Options:
-h, --help output usage information
-R, --recurse Recurse into directories
-a, --append Append the tags to an existing tag file.
--exclude Comma separated list of exclusion patterns. Exclude files and directories matching one of the `patterns`.
-f Write tags to specified file. Value of "-" writes tags to stdout ["tags"; or "TAGS" when -e supplied].
--extension File extension to look for. Default is `.js`## license
MIT