Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bevry-archive/facebook-notes-exporter
Export your Facebook notes
https://github.com/bevry-archive/facebook-notes-exporter
Last synced: about 9 hours ago
JSON representation
Export your Facebook notes
- Host: GitHub
- URL: https://github.com/bevry-archive/facebook-notes-exporter
- Owner: bevry-archive
- License: other
- Created: 2020-11-01T23:21:57.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-20T02:25:22.000Z (11 months ago)
- Last Synced: 2024-04-08T15:41:52.469Z (7 months ago)
- Language: TypeScript
- Size: 396 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.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
[Complete API Documentation.](http://master.facebook-notes-exporter.bevry-archive.surge.sh/docs/globals.html)
### 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