{"id":40296636,"url":"https://github.com/brainbrian/pnwcams","last_synced_at":"2026-01-20T05:06:36.374Z","repository":{"id":22564606,"uuid":"25905908","full_name":"brainbrian/pnwcams","owner":"brainbrian","description":"Site build for PNW Cams","archived":false,"fork":false,"pushed_at":"2025-10-25T07:09:43.000Z","size":24096,"stargazers_count":7,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T09:07:17.215Z","etag":null,"topics":["react","reactjs","snowboarding","surfing","washington","weather","webpack"],"latest_commit_sha":null,"homepage":"http://pnwcams.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brainbrian.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2014-10-29T05:27:53.000Z","updated_at":"2025-10-25T07:09:46.000Z","dependencies_parsed_at":"2025-10-25T09:05:59.053Z","dependency_job_id":"353c996e-6860-4482-b10d-7fa747a34335","html_url":"https://github.com/brainbrian/pnwcams","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brainbrian/pnwcams","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainbrian%2Fpnwcams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainbrian%2Fpnwcams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainbrian%2Fpnwcams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainbrian%2Fpnwcams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brainbrian","download_url":"https://codeload.github.com/brainbrian/pnwcams/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brainbrian%2Fpnwcams/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28596087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react","reactjs","snowboarding","surfing","washington","weather","webpack"],"created_at":"2026-01-20T05:06:35.871Z","updated_at":"2026-01-20T05:06:36.368Z","avatar_url":"https://github.com/brainbrian.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PNW Cams\n\n![Vercel](https://vercelbadge.vercel.app/api/brainbrian/pnwcams)\n\nLive webcams for surf and snow conditions across the Pacific Northwest.\n\nBuilt with Next.js 16 (App Router), TypeScript, and Tailwind CSS.\n\nI built this site as a tool for myself to see webcams around the Pacific Northwest that I check on a regular basis. I hope you find it useful.\n\n– [Brian](http://www.brainbrian.com)\n\n## Features\n\n- 🏄 **Surf Cams**: Live webcams from BC to Oregon coast\n- ⛷️ **Snow Cams**: Live webcams from PNW ski resorts and mountains\n- 🌡️ **Weather Data**: Real-time weather conditions for each location\n- 📱 **Responsive Design**: Works on all devices\n- 🎨 **Modern UI**: Built with Tailwind CSS\n- ⚡ **Fast Performance**: Next.js App Router with TypeScript\n\n## 🚀 Quick Start\n\n1.  **Clone the repo**\n\n2.  **Install dependencies**\n\n    ```shell\n    cd pnwcams/\n    npm install\n    ```\n\n3.  **Start development server**\n\n    ```shell\n    npm run dev\n    ```\n\n    Site is now running at http://localhost:3000\n\n    The app will automatically redirect to `/surf` or `/snow` based on the current month:\n    - October - March → Snow Cams\n    - April - September → Surf Cams\n\n4.  **Build for production**\n\n    ```shell\n    npm run build\n    npm start\n    ```\n\n## Project Structure\n\n```\napp/\n├── api/\n│   └── weather/          # Weather API proxy routes\n│       ├── surf/\n│       └── snow/\n├── components/           # React components\n│   ├── Header.tsx\n│   ├── Footer.tsx\n│   ├── Camera.tsx\n│   ├── Cameras.tsx      # Scroll-snap carousel\n│   ├── TitleCard.tsx\n│   ├── TitleCardLinks.tsx\n│   ├── Location.tsx\n│   └── Category.tsx\n├── data/                 # JSON data files\n│   ├── surf.json\n│   └── snow.json\n├── hooks/                # Custom React hooks\n│   └── useWeather.ts\n├── lib/                  # Utility functions\n│   └── utils.ts\n├── types/                # TypeScript type definitions\n│   └── index.ts\n├── surf/                 # Surf page\n│   └── page.tsx\n├── snow/                 # Snow page\n│   └── page.tsx\n├── layout.tsx            # Root layout\n├── page.tsx              # Home (redirect)\n└── globals.css           # Global styles\n```\n\n## Technologies\n\n- **Next.js 16**: App Router, API Routes, Server Components\n- **React 19**: Latest React features\n- **TypeScript**: Type-safe code\n- **Tailwind CSS 4**: Utility-first styling\n\n## Weather APIs\n\n- **Surf**: OpenWeatherMap API (proxied through Next.js API routes)\n- **Snow**: NOAA/forecast.weather.gov API (proxied through Next.js API routes)\n\n## Deployment\n\nDeployed on Vercel with automatic deployments from the main branch.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is open source and available under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrainbrian%2Fpnwcams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrainbrian%2Fpnwcams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrainbrian%2Fpnwcams/lists"}