Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bevry-archive/facebook-export-notes
Export your facebook notes
https://github.com/bevry-archive/facebook-export-notes
facebook facebook-notes nodejs
Last synced: about 9 hours ago
JSON representation
Export your facebook notes
- Host: GitHub
- URL: https://github.com/bevry-archive/facebook-export-notes
- Owner: bevry-archive
- Created: 2016-05-01T20:07:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-02T09:25:10.000Z (about 4 years ago)
- Last Synced: 2024-09-19T00:24:06.539Z (about 2 months ago)
- Topics: facebook, facebook-notes, nodejs
- Language: JavaScript
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Facebook Export Notes
Export your Facebook Notes as Facebook's takeout service doesn't do it for you
## Usage
### As a Consumer
Install [node](https://nodejs.org)
Then install this:
```
npm install --global facebook-export-notes
```Then run it, following the prompts:
```
facebook-export-notes
```Notes should go inside `./notes` and `./cleaned`
### As a Developer
Clone the repository:
``` shell
git clone https://github.com/balupton/facebook-export-notes.git
cd facebook-export-notes
```Install dependencies - requires [node](https://nodejs.org)
``` shell
npm install
```Automatically prepare structure:
```
node --harmony lib/setup.js
```Automatically open facebook window, manually login to facebook then close the window:
```
node --harmony lib/login.js
```Automatically download the URLs of all your notes:
```
node --harmony lib/urls.js
```Automatically use those URLs to download the notes to `./notes`:
```
node --harmony lib/downloader.js
```Automatically clean the output of the downloaded notes to `./cleaned`:
```
node --harmony lib/clean.js
```All done.
## License
MIT, Copyright 2016+ Benjamin Lupton