Skip to content

Commit 76aba38

Browse files
chore: rename from solidpod to mypod
- Change package name to mypod (5 chars, easy to type) - Update GitHub repo and all URLs - Avoids npm naming conflict with existing solid-pod package
1 parent 2115b2d commit 76aba38

4 files changed

Lines changed: 2274 additions & 23 deletions

File tree

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# solidpod
1+
# mypod
22

33
> The easiest way to run a Solid pod. Zero configuration, just works.
44
5-
[![npm version](https://img.shields.io/npm/v/solidpod.svg)](https://www.npmjs.com/package/solidpod)
5+
[![npm version](https://img.shields.io/npm/v/mypod.svg)](https://www.npmjs.com/package/mypod)
66
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
77

8-
**solidpod** is the simplest wrapper to run your own [Solid](https://solidproject.org) pod server.
8+
**mypod** is the simplest wrapper to run your own [Solid](https://solidproject.org) pod server.
99

1010
## 🚀 Quick Start
1111

1212
```bash
1313
# Run instantly with npx (no installation required!)
14-
npx solidpod
14+
npx mypod
1515

1616
# That's it! Your Solid pod is running at http://localhost:5444
1717
```
@@ -30,57 +30,57 @@ npx solidpod
3030
### No Installation (Recommended)
3131

3232
```bash
33-
npx solidpod
33+
npx mypod
3434
```
3535

3636
### Global Installation
3737

3838
```bash
39-
npm install -g solidpod
40-
solidpod
39+
npm install -g mypod
40+
mypod
4141
```
4242

4343
## 🎮 Usage
4444

4545
```bash
4646
# Start with defaults
47-
solidpod
47+
mypod
4848

4949
# Custom port
50-
solidpod --port 8080
50+
mypod --port 8080
5151

5252
# Custom data directory
53-
solidpod --root /var/pods
53+
mypod --root /var/pods
5454

5555
# Multi-user mode
56-
solidpod --multiuser
56+
mypod --multiuser
5757

5858
# Disable authentication
59-
solidpod --no-auth
59+
mypod --no-auth
6060

6161
# Show help
62-
solidpod --help
62+
mypod --help
6363
```
6464

6565
## 📖 How It Works
6666

67-
solidpod is a thin wrapper around [jspod](https://github.com/JavaScriptSolidServer/jspod), which itself wraps [JavaScriptSolidServer](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer).
67+
mypod is a thin wrapper around [jspod](https://github.com/JavaScriptSolidServer/jspod), which itself wraps [JavaScriptSolidServer](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer).
6868

6969
**Layers:**
7070
```
71-
solidpod → jspod → JavaScriptSolidServer
71+
mypod → jspod → JavaScriptSolidServer
7272
```
7373

7474
Each layer adds convenience:
7575
- **JavaScriptSolidServer**: Full-featured Solid server implementation
7676
- **jspod**: Beautiful CLI with sensible defaults
77-
- **solidpod**: Most user-friendly name for instant discovery
77+
- **mypod**: Most user-friendly name for instant discovery
7878

7979
## 🌟 First Run
8080

8181
**Step 1**: Run the command
8282
```bash
83-
npx solidpod
83+
npx mypod
8484
```
8585

8686
**Step 2**: Open http://localhost:5444 in your browser

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22

33
/**
4-
* solidpod - Solid Pod Server
4+
* mypod - My Solid Pod
55
* The easiest way to run a Solid pod
66
*/
77

0 commit comments

Comments
 (0)