diff --git a/src/puter-js/README.md b/src/puter-js/README.md
index 446de8017..157e2dd9c 100644
--- a/src/puter-js/README.md
+++ b/src/puter-js/README.md
@@ -1,21 +1,72 @@
-
Puter.js
-The official JavaScript SDK for Puter.com. Cloud and AI features right from your frontend code!
-
- « LIVE DEMO »
-
-
- Docs
- ·
- Puter.com
- ·
- Discord
- ·
- Reddit
- ·
- X (Twitter)
-
+# Puter.js
+
+The official JavaScript SDK for [Puter.com](https://puter.com) — access cloud and AI features directly from your frontend code.
+
+---
+
+## Installation (npm)
+
+```sh
+npm install @heyputer/puterjs
+```
+
+### Importing
+
+#### ES Modules
+
+```js
+import puter from '@heyputer/puterjs';
+```
+
+#### CommonJS
+
+```js
+const puter = require('@heyputer/puterjs');
+```
+
+## Usage Example
+
+```js
+// Print a message
+puter.print('Hello from Puter.js!');
+
+// Chat with GPT-3.5 Turbo
+puter.ai.chat('What color was Napoleon\'s white horse?').then(response => {
+ puter.print(response);
+});
+```
+
+---
+
+## CDN Usage
+
+Include Puter.js directly in your HTML via CDN:
+
+```html
+
+
+```
+
+---
+
+## Documentation & Community
+
+- [Docs](https://docs.puter.com)
+- [Live Demo](https://docs.puter.com/playground/)
+- [Puter.com](https://puter.com)
+- [Discord](https://discord.com/invite/PQcx7Teh8u)
+- [Reddit](https://reddit.com/r/puter)
+- [X (Twitter)](https://twitter.com/HeyPuter)
+
+---
+
+## Local Development Example
-### Example
Make sure the development server is running.
```html
@@ -33,4 +84,3 @@ Make sure the development server is running.