Firebase TypeScript

npm i firebase

//then you can perform the operations you need with yout database,
//for example:
storeMembers(members: Club[]) {
      return this.http.get('https://<your-project>.firebaseio.com/members.json', members);
  }
MitchAloha