├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── lib └── index.js ├── package.json ├── src ├── common.coffee ├── index.coffee ├── plugins │ ├── base.coffee │ ├── distinctid.coffee │ ├── index.coffee │ ├── referral.coffee │ └── utm.coffee └── providers │ ├── baidu.coffee │ ├── base.coffee │ ├── customerio.coffee │ ├── fullstory.coffee │ ├── google.coffee │ ├── growingio.coffee │ ├── index.coffee │ ├── sensorsdata.coffee │ └── tbpanel.coffee ├── test ├── index.html └── test.js ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | www 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | 2 | /src 3 | /test 4 | /Gruntfile.coffee 5 | /bower.json 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/bower.json -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/package.json -------------------------------------------------------------------------------- /src/common.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/common.coffee -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/index.coffee -------------------------------------------------------------------------------- /src/plugins/base.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/plugins/base.coffee -------------------------------------------------------------------------------- /src/plugins/distinctid.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/plugins/distinctid.coffee -------------------------------------------------------------------------------- /src/plugins/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/plugins/index.coffee -------------------------------------------------------------------------------- /src/plugins/referral.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/plugins/referral.coffee -------------------------------------------------------------------------------- /src/plugins/utm.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/plugins/utm.coffee -------------------------------------------------------------------------------- /src/providers/baidu.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/baidu.coffee -------------------------------------------------------------------------------- /src/providers/base.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/base.coffee -------------------------------------------------------------------------------- /src/providers/customerio.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/customerio.coffee -------------------------------------------------------------------------------- /src/providers/fullstory.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/fullstory.coffee -------------------------------------------------------------------------------- /src/providers/google.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/google.coffee -------------------------------------------------------------------------------- /src/providers/growingio.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/growingio.coffee -------------------------------------------------------------------------------- /src/providers/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/index.coffee -------------------------------------------------------------------------------- /src/providers/sensorsdata.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/sensorsdata.coffee -------------------------------------------------------------------------------- /src/providers/tbpanel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/src/providers/tbpanel.coffee -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/test/test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gta/HEAD/yarn.lock --------------------------------------------------------------------------------