|
| 1 | +# fastpod |
| 2 | + |
| 3 | +> The fastest way to run a Solid pod. Zero configuration, just works. |
| 4 | +
|
| 5 | +[](https://www.npmjs.com/package/fastpod) |
| 6 | +[](LICENSE) |
| 7 | + |
| 8 | +**fastpod** is the quickest way to get your own [Solid](https://solidproject.org) pod server running. |
| 9 | + |
| 10 | +## 🚀 Quick Start |
| 11 | + |
| 12 | +```bash |
| 13 | +# Run instantly with npx (no installation required!) |
| 14 | +npx fastpod |
| 15 | + |
| 16 | +# That's it! Your Solid pod is running at http://localhost:5444 |
| 17 | +``` |
| 18 | + |
| 19 | +## ⚡ Features |
| 20 | + |
| 21 | +- ✅ **Zero configuration** - Just works |
| 22 | +- ✅ **Lightning fast** - Server starts in seconds |
| 23 | +- ✅ **Solid Protocol** - Full spec compliance |
| 24 | +- ✅ **WebID Authentication** - Decentralized identity |
| 25 | +- ✅ **Passkey Support** - Modern passwordless auth |
| 26 | +- ✅ **WebSocket Notifications** - Real-time updates |
| 27 | +- ✅ **JSON-LD Native** - First-class linked data support |
| 28 | + |
| 29 | +## 📦 Installation |
| 30 | + |
| 31 | +### No Installation (Recommended) |
| 32 | + |
| 33 | +```bash |
| 34 | +npx fastpod |
| 35 | +``` |
| 36 | + |
| 37 | +### Global Installation |
| 38 | + |
| 39 | +```bash |
| 40 | +npm install -g fastpod |
| 41 | +fastpod |
| 42 | +``` |
| 43 | + |
| 44 | +## 🎮 Usage |
| 45 | + |
| 46 | +```bash |
| 47 | +# Start with defaults |
| 48 | +fastpod |
| 49 | + |
| 50 | +# Custom port |
| 51 | +fastpod --port 8080 |
| 52 | + |
| 53 | +# Custom data directory |
| 54 | +fastpod --root /var/pods |
| 55 | + |
| 56 | +# Multi-user mode |
| 57 | +fastpod --multiuser |
| 58 | + |
| 59 | +# Disable authentication |
| 60 | +fastpod --no-auth |
| 61 | + |
| 62 | +# Show help |
| 63 | +fastpod --help |
| 64 | +``` |
| 65 | + |
| 66 | +## 📖 How It Works |
| 67 | + |
| 68 | +fastpod is a lightweight wrapper around [jspod](https://github.com/JavaScriptSolidServer/jspod), which provides a beautiful CLI for [JavaScriptSolidServer](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer). |
| 69 | + |
| 70 | +**Stack:** |
| 71 | +``` |
| 72 | +fastpod → jspod → JavaScriptSolidServer |
| 73 | +``` |
| 74 | + |
| 75 | +Each layer adds value: |
| 76 | +- **JavaScriptSolidServer**: Full-featured Solid server implementation |
| 77 | +- **jspod**: Beautiful CLI with sensible defaults |
| 78 | +- **fastpod**: Fastest, easiest way to get started |
| 79 | + |
| 80 | +## 🌟 First Run |
| 81 | + |
| 82 | +**Step 1**: Run the command |
| 83 | +```bash |
| 84 | +npx fastpod |
| 85 | +``` |
| 86 | + |
| 87 | +**Step 2**: Open http://localhost:5444 in your browser |
| 88 | + |
| 89 | +**Step 3**: Register with your device's passkey (fingerprint, Face ID, etc.) |
| 90 | + |
| 91 | +**Step 4**: Start using your pod! |
| 92 | + |
| 93 | +## 🎯 Why fastpod? |
| 94 | + |
| 95 | +- **Fast to type**: Just 7 characters |
| 96 | +- **Fast to start**: Server running in seconds |
| 97 | +- **Fast to learn**: Zero configuration needed |
| 98 | +- **Fast to deploy**: One command and you're live |
| 99 | + |
| 100 | +## 📚 Learn More |
| 101 | + |
| 102 | +- **Solid Project**: https://solidproject.org |
| 103 | +- **Solid Protocol**: https://solidproject.org/TR/protocol |
| 104 | +- **WebID**: https://www.w3.org/2005/Incubator/webid/spec |
| 105 | +- **jspod**: https://github.com/JavaScriptSolidServer/jspod |
| 106 | + |
| 107 | +## 🤝 Contributing |
| 108 | + |
| 109 | +Contributions welcome! This package is intentionally minimal - just a friendly wrapper. |
| 110 | + |
| 111 | +## 📄 License |
| 112 | + |
| 113 | +MIT - see [LICENSE](./LICENSE) |
| 114 | + |
| 115 | +## 🙏 Credits |
| 116 | + |
| 117 | +Built on [jspod](https://github.com/JavaScriptSolidServer/jspod) and [JavaScriptSolidServer](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer). |
| 118 | + |
| 119 | +--- |
| 120 | + |
| 121 | +**Made with ❤️ for the Solid community** |
| 122 | + |
| 123 | +*"Your pod, fast"* |
0 commit comments