@wral/studio-app
v2.5.3
Published
More than a CMS, Studio App is a extensible web application ecosystem aimed to manage large-scale websites.
Downloads
66
Keywords
Readme
Studio App
More than a CMS, Studio App is a extensible web application ecosystem aimed to manage large-scale websites.
Installation
CDN
<script src="https://cdn.wral.studio/studio-app.js"></script>
NPM
npm install --save @wral/studio-app
Usage
Include studio-app.js
from our CDN or build from npm.
Then use the <studio-app>
component in your HTML document, as well as any
mods..
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Studio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<!-- Load studio-app from CDN -->
<script src="https://cdn.wral.studio/studio-app.js"></script>
</head>
<body>
<studio-app>
<studio-mod src="./your-mod.mjs"></studio-mod>
</studio-app>
</body>
</html>
Modify Studio
Create a new studio mod:
npm create vite@latest my-studio-mod -- --template lit
lit
is optional.
npm run build