mirror of
https://github.com/HeyPuter/puter
synced 2024-11-15 06:15:47 +00:00
11f3e29604
These currently work in a way that's different from what eslint expects, so disable it. At some point it would be good if it could check them (and if the tests could run on CI) but right now they just make a lot of noise. |
||
---|---|---|
.. | ||
src | ||
test | ||
.gitignore | ||
APACHE_LICENSE.txt | ||
app-migration-guide.txt | ||
package-lock.json | ||
package.json | ||
README.md |
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)
Example
Make sure the development server is running.
<html>
<body>
<script src="http://puter.localhost:4100/sdk/puter.dev.js"></script>
<script>
// Loading ...
puter.print(`Loading...`);
// Chat with GPT-3.5 Turbo
puter.ai.chat(`What color was Napoleon's white horse?`).then((response) => {
puter.print(response);
});
</script>
</body>
</html>