jwtmoshiur 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/readme.md +16 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -255,6 +255,22 @@ your-project/
|
|
|
255
255
|
|
|
256
256
|
## 🛠️ Troubleshooting
|
|
257
257
|
|
|
258
|
+
### Issue: Auto setup not working after npm install
|
|
259
|
+
**Solution:** Manually run the setup command:
|
|
260
|
+
```bash
|
|
261
|
+
npx jwtmoshiur
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
Or if you're in the package, run:
|
|
265
|
+
```bash
|
|
266
|
+
npm exec jwtmoshiur
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
Or update to v1.0.1+:
|
|
270
|
+
```bash
|
|
271
|
+
npm install jwtmoshiur@latest
|
|
272
|
+
```
|
|
273
|
+
|
|
258
274
|
### Issue: Token generation fails
|
|
259
275
|
**Solution:** Ensure `JWT_SECRET` is set in `.env`
|
|
260
276
|
|