
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
github.com/tj/go-redirects
Redirect format parser to match Netlify's format.
# Implicit 301 redirects
/home /
/blog/my-post.php /blog/my-post
/news /blog
/google https://www.google.com
# Redirect with a 301
/home / 301
# Redirect with a 302
/my-redirect / 302
# Rewrite a path
/pass-through /index.html 200
# Show a custom 404 for this path
/ecommerce /store-closed 404
# Single page app rewrite
/* /index.html 200
# Proxying
/api/* https://api.example.com/:splat 200
# Forcing
/app/* /app/index.html 200!
# Params
/ /something 302 foo=bar
/ /something 302 foo=bar bar=baz
yields
[
{
"From": "/home",
"To": "/",
"Status": 301,
"Force": false,
"Params": null
},
{
"From": "/blog/my-post.php",
"To": "/blog/my-post",
"Status": 301,
"Force": false,
"Params": null
},
{
"From": "/news",
"To": "/blog",
"Status": 301,
"Force": false,
"Params": null
},
{
"From": "/google",
"To": "https://www.google.com",
"Status": 301,
"Force": false,
"Params": null
},
{
"From": "/home",
"To": "/",
"Status": 301,
"Force": false,
"Params": null
},
{
"From": "/my-redirect",
"To": "/",
"Status": 302,
"Force": false,
"Params": null
},
{
"From": "/pass-through",
"To": "/index.html",
"Status": 200,
"Force": false,
"Params": null
},
{
"From": "/ecommerce",
"To": "/store-closed",
"Status": 404,
"Force": false,
"Params": null
},
{
"From": "/*",
"To": "/index.html",
"Status": 200,
"Force": false,
"Params": null
},
{
"From": "/api/*",
"To": "https://api.example.com/:splat",
"Status": 200,
"Force": false,
"Params": null
},
{
"From": "/app/*",
"To": "/app/index.html",
"Status": 200,
"Force": true,
"Params": null
},
{
"From": "/",
"To": "/something",
"Status": 302,
"Force": false,
"Params": {
"foo": "bar"
}
},
{
"From": "/",
"To": "/something",
"Status": 302,
"Force": false,
"Params": {
"bar": "baz",
"foo": "bar"
}
}
]
FAQs
Unknown package
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
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.