You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A searchable index of your favorite Facebook pages.
Generate the index
Use the facebook-indexer script, which in turn uses the facebook-cli tool, to generate the page index and image files of the Facebook pages that you follow.
The app loads the index of facebook pages from app/data/index.json, where pages are listed by their id and title:
Thumbnail images are expected to reside in app/data/images/, named only by their id (no extension). Images might be JPEG, PNG, etc. but no distinction is made based on the file format.
Place the index.json file and the images/ directory in this project's app/data/ folder.
Build and run
Install dependencies and build the user interface with:
yarn install
yarn build
Then you can open app/index.html in your browser.
However, the data won't load because requesting a file from a file:// URI falls under the policy of blocking cross-origin requests implemented by browsers due to security concerns. Run:
yarn serve
This will start a local server and open the index page in your default browser.
Share online
You can upload your searchable index online and share it. Everything is in the app/ directory.
Develop
This application is written in Elm. The Elm compiler builds the JavaScript bundle which powers the final product.
To start the source file watcher and local server, run: