An open API service indexing awesome lists of open source software.

https://github.com/creative-tutorials/task-managemnt-app


https://github.com/creative-tutorials/task-managemnt-app

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Task-Managemnt-App

In this app I've used Firebase and JavaScript
to be able to use firebase you will have to initialize firebase

you can start intializing your firebase app by installing it using `npm`

```bash
$ npm install firebase
```

Step 2: intializing full concept

```javascript
import { initializeApp } from 'firebase/app';
```

```js
// TODO: Replace the following with your app's Firebase project configuration
const firebaseConfig = {
//...
};

const app = initializeApp(firebaseConfig);
```