├── .gitignore ├── LICENSE ├── README.md ├── dist └── easy-http.min.js ├── gulpfile.js ├── index.html ├── package.json └── src └── easy-http.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwflorencio/easy-http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwflorencio/easy-http/HEAD/README.md -------------------------------------------------------------------------------- /dist/easy-http.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwflorencio/easy-http/HEAD/dist/easy-http.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwflorencio/easy-http/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwflorencio/easy-http/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwflorencio/easy-http/HEAD/package.json -------------------------------------------------------------------------------- /src/easy-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwwflorencio/easy-http/HEAD/src/easy-http.js --------------------------------------------------------------------------------