A fully frontend, CDN-powered music streaming architecture built to study real-world performance, modularity, and media delivery design.
SoundScript is a modular, CDN-powered client-side music streaming platform that delivers a modern experience using a pure CDN media architecture — no backend, no frameworks, no shortcuts.
It features:
- Real-time queue engine
- Modular audio core
- Event-driven UI system
- CDN-powered media plane
- Responsive multi-device interface
- Dynamic album detection
- Draggable Mini bar, UI, and state persistence
This project is an architectural learning build focused on performance, correctness, and maintainability.
- Project Name: SoundScript
- Status: Stable (Base Release)
- Current Version: v1.0.0
- Release Type: Production-ready
- Media Delivery: External CDN (soundscript-cdn)
- Architecture: Modular Vanilla JS (no frameworks)
soundscript/
│
├── assets/
│ ├── font/
│ ├── icons/
│ ├── favicon.png
│ └── preview.png
│
├── css/
│ ├── animations.css
│ ├── base.css
│ ├── components.css
│ ├── utilities.css
│ ├── comp-resp.css
│ └── utils-resp.css
│
├── js/
│ ├── init.js
│ ├── gen-util.js
│ ├── gen-main.js
│ ├── music-manager.js
│ ├── event-emitter.js
│ ├── card-slider.js
│ ├── nav.js
│ ├── search-bar.js
│ └── ui-util.js
│
├── index.html
│
├── CHANGELOG.md
├── LICENSE
├── README.md
├── SECURITY.md
├── SRS.pdf
└── SRS.docx
💡 USER → SoundScript App (Logic Plane) → SoundScript-CDN (Media Plane)
- App logic is fully independent
- CDN holds only static media
- Both are versioned separately
export const CDN_BASE =
'https://raw.githubusercontent.com/dipsana/soundscript-cdn/main';CDN and application versions are intentionally decoupled to allow independent media upgrades without application redeployment.
| Feature | Description |
|---|---|
| Dynamic Albums | Zero-hardcoded album discovery |
| Queue Engine | Event-driven playback controller |
| Mini Bar | Draggable floating player UI |
| Seek Bar | Color-synced real-time timeline |
| Search | Partial title resolver |
| Stats | Persistent local playback tracking |
| Responsive | Multi-device adaptive layout |
| Layer | Technology |
|---|---|
| UI | HTML5, CSS3 |
| Logic | Vanilla JavaScript |
| Audio | Web Audio API |
| Storage | LocalStorage |
| Media | GitHub CDN |
npx serve .Media files are stored separately:
SoundScript v1.0.0 is:
- Path-stable
- Cache-safe
- CDN-optimized
- Mobile-production-ready
- Framework-independent
- Modular architecture
- CDN media separation
- Event-driven UI design
- Performance-optimized rendering
- State preservation logic
- Professional project structuring
- Playlist creator
- Shuffle engine
- Full search
- Backend auth
- Cloudflare CDN mirror
- Multilingual UI
Dipsana Roy — Creator & Maintainer
This project is licensed under the MIT License.
- IEEE Software Requirements Specification (SRS) Standards
- MDN Web Docs — Web Audio API, HTML, CSS & JavaScript specifications
- DeepSeek — Core learning support & architectural validation
- ChatGPT — Documentation & architectural validation