
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
A GUI for managing and running [Hurl](https://hurl.dev) HTTP request collections.
A GUI for managing and running Hurl HTTP request collections.
Run npx hurler in any project directory to get a web-based interface for organizing .hurl files, managing environments, and executing requests.
npx hurler
This starts a local server at http://localhost:4000 and stores data in a .hurl/ directory in your current working directory.
npx hurler [options]
| Flag | Description |
|---|---|
--port, -p | Port to run the server on (default: 4000) |
--open, -o | Open the browser automatically |
You can also set the port via the PORT environment variable.
npx hurler # start on port 4000
npx hurler -p 8080 # start on port 8080
npx hurler -o # start and open browser
npx hurler -p 8080 -o # combine flags
All data is stored in .hurl/ relative to where you run the command:
.hurl/
├── collections/ # .hurl request files
├── environments/ # environment variable files
└── metadata.json # UI organization (sections, groups)
This directory is safe to commit to version control if you want to share collections with your team.
Hurler supports two types of environment files:
| File | Purpose | Commit to Git? |
|---|---|---|
{name}.env | Non-sensitive variables (URLs, feature flags, etc.) | ✅ Yes |
{name}.secrets.env | Sensitive values (API keys, tokens, passwords) | ❌ No |
Both files are automatically merged when running requests. Variables from either file can be used in your .hurl files with {{variable}} syntax.
Add this to your .gitignore to keep secrets out of version control:
# Hurler secrets
.hurl/environments/*.secrets.env
# .hurl/environments/dev.env (safe to commit)
base_url=https://api.dev.example.com
timeout=30
# .hurl/environments/dev.secrets.env (gitignored)
api_key=sk-abc123...
auth_token=bearer-xyz...
Then use in your .hurl files:
GET {{base_url}}/users
Authorization: Bearer {{auth_token}}
MIT
FAQs
A GUI for managing and running [Hurl](https://hurl.dev) HTTP request collections.
The npm package hurler receives a total of 33 weekly downloads. As such, hurler popularity was classified as not popular.
We found that hurler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.