├── .eslintrc ├── .gitignore ├── .travis.yml ├── README.md ├── dist ├── FirebaseREST.d.ts ├── FirebaseREST.js ├── FirebaseREST.js.map ├── FirebaseREST │ ├── Client.d.ts │ ├── Client.js │ ├── Client.js.map │ ├── JSONClient.d.ts │ ├── JSONClient.js │ ├── JSONClient.js.map │ ├── JSONResponse.d.ts │ ├── JSONResponse.js │ ├── JSONResponse.js.map │ └── helpers │ │ ├── objectToParamString.d.ts │ │ ├── objectToParamString.js │ │ ├── objectToParamString.js.map │ │ ├── urlFor.d.ts │ │ ├── urlFor.js │ │ └── urlFor.js.map ├── index.d.ts ├── index.js └── index.js.map ├── package.json ├── spec ├── FirebaseREST │ ├── ClientSpec.js │ ├── JSONClientSpec.js │ └── helpers │ │ └── urlForSpec.js ├── FirebaseRESTSpec.js └── support │ ├── helpers.js │ └── jasmine.json ├── src ├── FirebaseREST.ts └── FirebaseREST │ ├── Client.ts │ ├── JSONClient.ts │ ├── JSONResponse.ts │ └── helpers │ ├── objectToParamString.ts │ └── urlFor.ts ├── tsconfig.json ├── typings.json └── typings ├── globals ├── node-fetch │ └── index.d.ts └── node │ ├── index.d.ts │ └── typings.json └── index.d.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/README.md -------------------------------------------------------------------------------- /dist/FirebaseREST.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST.d.ts -------------------------------------------------------------------------------- /dist/FirebaseREST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST.js -------------------------------------------------------------------------------- /dist/FirebaseREST.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST.js.map -------------------------------------------------------------------------------- /dist/FirebaseREST/Client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/Client.d.ts -------------------------------------------------------------------------------- /dist/FirebaseREST/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/Client.js -------------------------------------------------------------------------------- /dist/FirebaseREST/Client.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/Client.js.map -------------------------------------------------------------------------------- /dist/FirebaseREST/JSONClient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/JSONClient.d.ts -------------------------------------------------------------------------------- /dist/FirebaseREST/JSONClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/JSONClient.js -------------------------------------------------------------------------------- /dist/FirebaseREST/JSONClient.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/JSONClient.js.map -------------------------------------------------------------------------------- /dist/FirebaseREST/JSONResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/JSONResponse.d.ts -------------------------------------------------------------------------------- /dist/FirebaseREST/JSONResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/JSONResponse.js -------------------------------------------------------------------------------- /dist/FirebaseREST/JSONResponse.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/JSONResponse.js.map -------------------------------------------------------------------------------- /dist/FirebaseREST/helpers/objectToParamString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/helpers/objectToParamString.d.ts -------------------------------------------------------------------------------- /dist/FirebaseREST/helpers/objectToParamString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/helpers/objectToParamString.js -------------------------------------------------------------------------------- /dist/FirebaseREST/helpers/objectToParamString.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/helpers/objectToParamString.js.map -------------------------------------------------------------------------------- /dist/FirebaseREST/helpers/urlFor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/helpers/urlFor.d.ts -------------------------------------------------------------------------------- /dist/FirebaseREST/helpers/urlFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/helpers/urlFor.js -------------------------------------------------------------------------------- /dist/FirebaseREST/helpers/urlFor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/FirebaseREST/helpers/urlFor.js.map -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/package.json -------------------------------------------------------------------------------- /spec/FirebaseREST/ClientSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/spec/FirebaseREST/ClientSpec.js -------------------------------------------------------------------------------- /spec/FirebaseREST/JSONClientSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/spec/FirebaseREST/JSONClientSpec.js -------------------------------------------------------------------------------- /spec/FirebaseREST/helpers/urlForSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/spec/FirebaseREST/helpers/urlForSpec.js -------------------------------------------------------------------------------- /spec/FirebaseRESTSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/spec/FirebaseRESTSpec.js -------------------------------------------------------------------------------- /spec/support/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/spec/support/helpers.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/FirebaseREST.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/src/FirebaseREST.ts -------------------------------------------------------------------------------- /src/FirebaseREST/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/src/FirebaseREST/Client.ts -------------------------------------------------------------------------------- /src/FirebaseREST/JSONClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/src/FirebaseREST/JSONClient.ts -------------------------------------------------------------------------------- /src/FirebaseREST/JSONResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/src/FirebaseREST/JSONResponse.ts -------------------------------------------------------------------------------- /src/FirebaseREST/helpers/objectToParamString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/src/FirebaseREST/helpers/objectToParamString.ts -------------------------------------------------------------------------------- /src/FirebaseREST/helpers/urlFor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/src/FirebaseREST/helpers/urlFor.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/typings.json -------------------------------------------------------------------------------- /typings/globals/node-fetch/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/typings/globals/node-fetch/index.d.ts -------------------------------------------------------------------------------- /typings/globals/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/typings/globals/node/index.d.ts -------------------------------------------------------------------------------- /typings/globals/node/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/typings/globals/node/typings.json -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/node-firebase-rest/HEAD/typings/index.d.ts --------------------------------------------------------------------------------