{"id":23445148,"url":"https://github.com/ddosnotification/express-snow-theme","last_synced_at":"2026-01-27T07:02:52.933Z","repository":{"id":264656978,"uuid":"893995502","full_name":"ddosnotification/express-snow-theme","owner":"ddosnotification","description":"Beautiful snowfall effect middleware for Express.js websites","archived":false,"fork":false,"pushed_at":"2024-11-26T16:04:11.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T16:22:41.157Z","etag":null,"topics":["christmas-theme","express-plugin","express-seasonal","express-snow-theme","expressjs-middleware","frontend-animation","holiday-decoration","javascript-animation","javascript-effects","lightweight-animation","node-snow","nodejs-snow","seasonal-theme","snow-animation","snow-effect","web-animation","web-effects","website-theme","winter-animation","winter-effect"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/express-snow-theme","language":"JavaScript","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/ddosnotification.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}},"created_at":"2024-11-25T15:10:47.000Z","updated_at":"2024-11-26T16:04:14.000Z","dependencies_parsed_at":"2024-11-25T16:28:29.548Z","dependency_job_id":"91b1a999-070f-49aa-b2c1-47d395f9a98f","html_url":"https://github.com/ddosnotification/express-snow-theme","commit_stats":null,"previous_names":["ddosnotification/express-snow-theme"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ddosnotification/express-snow-theme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddosnotification%2Fexpress-snow-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddosnotification%2Fexpress-snow-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddosnotification%2Fexpress-snow-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddosnotification%2Fexpress-snow-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ddosnotification","download_url":"https://codeload.github.com/ddosnotification/express-snow-theme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddosnotification%2Fexpress-snow-theme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28807078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T06:25:51.065Z","status":"ssl_error","status_checked_at":"2026-01-27T06:25:50.640Z","response_time":168,"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":["christmas-theme","express-plugin","express-seasonal","express-snow-theme","expressjs-middleware","frontend-animation","holiday-decoration","javascript-animation","javascript-effects","lightweight-animation","node-snow","nodejs-snow","seasonal-theme","snow-animation","snow-effect","web-animation","web-effects","website-theme","winter-animation","winter-effect"],"created_at":"2024-12-23T19:29:36.431Z","updated_at":"2026-01-27T07:02:52.906Z","avatar_url":"https://github.com/ddosnotification.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# ❄️ express-snow-theme\n\n![npm version](https://img.shields.io/npm/v/express-snow-theme)\n![downloads](https://img.shields.io/npm/dm/express-snow-theme)\n![GitHub stars](https://img.shields.io/github/stars/ddosnotification/express-snow-theme)\n\nBeautiful snowfall effect middleware for Express.js websites\n\u003c/div\u003e\n\n## 🚀 Installation\n```bash\nnpm install express-snow-theme\n```\n\n## 🌨️ Basic Usage\n```javascript\nconst express = require('express');\nconst snowTheme = require('express-snow-theme')();\nconst app = express();\n\napp.use('/', snowTheme.middleware());\napp.use('/', snowTheme.inject());\n\napp.get('/', (req, res) =\u003e {\n    res.send(`\n        \u003chtml\u003e\n            \u003cbody\u003e\n                \u003ch1\u003eWinter Page\u003c/h1\u003e\n            \u003c/body\u003e\n        \u003c/html\u003e\n    `);\n});\n\napp.listen(3000);\n```\n\n## ⚙️ Custom Configuration\n```javascript\nconst snowTheme = require('express-snow-theme')({\n    snowflakes: ['❄', '❅', '❆'],    // Custom characters\n    density: 100,                    // More snowflakes\n    interval: 200,                   // Creation interval (ms)\n    minSize: 0.8,                   // Min snowflake size\n    maxSize: 2,                     // Larger flakes\n    minDuration: 8,                 // Slower falling\n    maxDuration: 15,                // Max fall duration\n    wind: 50,                       // Stronger wind effect\n    zIndex: 999999                  // Stack order\n});\n```\n\n## 🎨 Preset Examples\n\n### Light Snow\n```javascript\nconst snowTheme = require('express-snow-theme')({\n    density: 30,\n    minDuration: 8,\n    wind: 10\n});\n```\n\n### Blizzard\n```javascript\nconst snowTheme = require('express-snow-theme')({\n    density: 150,\n    interval: 100,\n    wind: 50,\n    maxSize: 2\n});\n```\n\n### Gentle Snow\n```javascript\nconst snowTheme = require('express-snow-theme')({\n    density: 40,\n    minDuration: 10,\n    maxSize: 1.2,\n    wind: 5\n});\n```\n\n## 🎄 Features\n- Zero dependencies\n- Automatically injects snow effect into HTML responses\n- Fully configurable appearance and behavior\n- Responsive design\n- Performance optimized with automatic cleanup\n- Mobile-friendly\n\n## 🔧 Browser Support\n- Chrome\n- Firefox\n- Safari\n- Edge\n- Opera\n\n## 📝 License\nMIT © ddosnotification\n\n## 🤝 Contributing\n1. Fork\n2. Create feature branch (`git checkout -b feature/amazing`)\n3. Commit changes (`git commit -m 'Add amazing'`)\n4. Push to branch (`git push origin feature/amazing`)\n5. Open a Pull Request\n\n\u003cdiv align=\"center\"\u003e\nMade with ❄️ for winter web magic\n\u003c/div\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddosnotification%2Fexpress-snow-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fddosnotification%2Fexpress-snow-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddosnotification%2Fexpress-snow-theme/lists"}