
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
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.
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
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.