Gathering detailed insights and metrics for gatsby-plugin-zeit-now
Gathering detailed insights and metrics for gatsby-plugin-zeit-now
Gathering detailed insights and metrics for gatsby-plugin-zeit-now
Gathering detailed insights and metrics for gatsby-plugin-zeit-now
npm install gatsby-plugin-zeit-now
Typescript
Module System
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
11 Stars
19 Commits
1 Forks
1 Watchers
1 Branches
1 Contributors
Updated on Feb 05, 2023
Latest Version
0.5.0
Package Id
gatsby-plugin-zeit-now@0.5.0
Unpacked Size
7.00 kB
Size
2.71 kB
File Count
5
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
4
Configuring Zeit Now/Vercel routes, enhancing zero-config deployments.
Add basic security headers and caching headers.
Automatically generates redirects and rewrites.
With Yarn:
1yarn add gatsby-plugin-zeit-now
Or with npm:
1npm install --save gatsby-plugin-zeit-now
Add plugin to gatsby-config.js
1plugins: ['gatsby-plugin-zeit-now']
globalHeaders
allows modifying default headers (shown below) that apply to all routes.1plugins: [ 2 { 3 resolve: 'gatsby-plugin-zeit-now', 4 options: { 5 globalHeaders: { 6 'referrer-policy': 'same-origin', 7 'feature-policy': 8 "geolocation 'self'; microphone 'self'; camera 'self'", 9 'expect-ct': 'max-age=604800, enforce', 10 'strict-transport-security': 'max-age=31536000; includeSubDomains', 11 'x-frame-options': 'DENY', 12 'x-xss-protection': '1; mode=block', 13 'x-content-type-options': 'nosniff', 14 'x-download-options': 'noopen' 15 } 16 } 17 } 18]
headers
allows configuring per-route headers.1plugins: [ 2 { 3 resolve: 'gatsby-plugin-zeit-now', 4 options: { 5 headers: { 6 '/about': { 7 'content-security-policy': 8 "base-uri 'self'; default-src 'self' https://fonts.googleapis.com data:; object-src 'none'; script-src 'self' 'unsafe-inline'; img-src 'self' data:; style-src 'self' 'https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com" 9 } 10 } 11 } 12 } 13]
Security + Cache Headers Example for Gatsby
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
no SAST tool detected
Details
Reason
Found 0/19 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More