Make website content editable by clients, no codebase access required.
npm install launchedLaunched is a tool to make website content editable to clients with no codebase access or coding knowledge required. It was created by Michael Beck for the Launch platform.
To get started, check out https://launched.tech for documentation, guides, and demos.
> [!NOTE]
> Launched is still in development. Be careful when using it in production.
``shell`
npm install launched
`html
type="module"
src="https://cdn.jsdelivr.net/npm/launched@latest/dist/bundle.js"
>
crossorigin
src="https://cdn.jsdelivr.net/combine/npm/react@18.3.1/umd/react.production.min.js,npm/react-dom@18.3.1/umd/react-dom.production.min.js"
>
crossorigin
src="https://update.greasyfork.org/scripts/499179/1402245/react_jsx-runtime-umd.js"
>
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/launched@latest/dist/ui/globals.css"
/>
`
`jsx
// src/index.jsx
/ Import the Launched provider /
import { LaunchedProvider } from "launched";
...
/ Add the provider to your app /
root.render(
);
`
`jsx
// src/app.jsx
/ Import the Launched Text element /
import { Text } from "launched/components";
...
export default function App() {
return (
$3
`html
...
Hello world!
``ISC