https://github.com/spiderjockey02/erela.js-facebook
Facebook plugin for Erela.JS
https://github.com/spiderjockey02/erela.js-facebook
erela-facebook erelajs facebook plugin
Last synced: 4 months ago
JSON representation
Facebook plugin for Erela.JS
- Host: GitHub
- URL: https://github.com/spiderjockey02/erela.js-facebook
- Owner: Spiderjockey02
- License: apache-2.0
- Created: 2021-02-15T17:02:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-18T17:32:56.000Z (about 4 years ago)
- Last Synced: 2025-02-02T05:24:44.476Z (4 months ago)
- Topics: erela-facebook, erelajs, facebook, plugin
- Language: JavaScript
- Homepage:
- Size: 43 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This a plugin for Erela.JS to allow the use of Facebook URL's, it uses direct URL's to play the audio from the video.- https://www.facebook.com/peopleareawesome/videos/best-videos-of-the-week/1426881677361006/
- https://fb.watch/4NmOK_doX-/## Documentation & Guides
It is recommended to read the documentation to start, and the guides to use the plugin.
- [Documentation](https://solaris.codes/projects/erelajs/docs/gettingstarted.html#getting-started 'Erela.js Documentation')
- [Guides](https://guides.menudocs.org/topics/erelajs/)
## Installation
**NPM** :
```sh
npm install erela.js-facebook
```**Yarn** :
```sh
yarn add erela.js-facebook
```## Example Usage
```javascript
const { Manager } = require("erela.js");
const Facebook = require("erela.js-facebook");const manager = new Manager({
plugins: [
// Initiate the plugin
new Facebook()
]
});manager.search("https://www.facebook.com/peopleareawesome/videos/best-videos-of-the-week/1426881677361006");
```