Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
**btags** is a ctags generator for JavaScript. In particular, it's made in order to support ES2015/ES2016 features and beyond, by using [babylon](https://www.npmjs.com/package/babylon), which is babel's AST tool.
btags is a ctags generator for JavaScript. In particular, it's made in order to support ES2015/ES2016 features and beyond, by using babylon, which is babel's AST tool.
The primary reason for using this over other ctags tools is for support of newer JavaScript features like class
and import
.
// file.js
import Foo from "foo";
import {q,r} from "zed";
import {john as jack} from "joe";
class FooFoo extends Foo {
constructor () {
this.x = 2
}
foo (cb) {
setTimeout(() => cb(1))
}
}
var x = 5;
let y = 4;
const a = 1, b=2;
function Bar () {
this.baz = 1;
}
Bar.prototype.bonk = 2;
$ btags file.js
!_TAG_FILE_FORMAT 2 /extended format/
!_TAG_FILE_SORTED 0 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Bryan English /bryan@bryanenglish.com/
!_TAG_PROGRAM_NAME btags //
!_TAG_PROGRAM_URL http://github.com/bengl/btags /github repository/
!_TAG_PROGRAM_VERSION 1.0.0 //
Foo test.js 1;" i
q test.js 2;" i
r test.js 2;" i
jack test.js 3;" i
constructor test.js 6;" f class:FooFoo
foo test.js 10;" f class:FooFoo
FooFoo test.js 5;" c
x test.js 15;" v
y test.js 16;" v
a test.js 17;" v
b test.js 17;" v
Bar test.js 19;" c
See LICENSE.txt
FAQs
**btags** is a ctags generator for JavaScript. In particular, it's made in order to support ES2015/ES2016 features and beyond, by using [babylon](https://www.npmjs.com/package/babylon), which is babel's AST tool.
The npm package btags receives a total of 9 weekly downloads. As such, btags popularity was classified as not popular.
We found that btags demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.