# BeEF-npm (Browser Exploitation Framework for npm)

This is a Node.js package that installs and interacts with the BeEF (Browser Exploitation Framework).

## Installation

```bash
npm install beef-npm
```

## usage
```javascript
const beef = require('beef-npm');

async function run() {
    await beef.installBeEF();
    await beef.startBeEF();
    await beef.interactWithBeEF('api/your-endpoint'); // Replace with actual endpoint
}

run().catch(console.error);
```