No description
  • JavaScript 76.6%
  • HTML 23.4%
Find a file
2025-06-23 23:52:44 -05:00
.devcontainer Use uuid for generating unique component IDs 2025-04-10 14:00:00 -05:00
src added new audio and models 2025-06-23 23:52:44 -05:00
.gitignore Add .npmignore, .gitignore, src/blocks.js, src/components.js, tsconfig.json, package.json, webpack.config.js, LICENSE, and README.md files 2024-01-30 03:26:04 -05:00
.npmignore Add .npmignore, .gitignore, src/blocks.js, src/components.js, tsconfig.json, package.json, webpack.config.js, LICENSE, and README.md files 2024-01-30 03:26:04 -05:00
LICENSE Add .npmignore, .gitignore, src/blocks.js, src/components.js, tsconfig.json, package.json, webpack.config.js, LICENSE, and README.md files 2024-01-30 03:26:04 -05:00
package-lock.json added new audio and models 2025-06-23 23:52:44 -05:00
package.json added new audio and models 2025-06-23 23:52:44 -05:00
README.md added new audio and models 2025-06-23 23:50:32 -05:00
tsconfig.json fix: Correct version numbers in package files and improve message handling in HTML generation 2025-04-10 19:48:45 -05:00
webpack.config.js feat: Update HTML generation and bump version to 1.0.50 2025-04-14 18:18:43 -05:00

Grapesjs Openai

DEMO

Provide a live demo of your plugin For a better user engagement create a simple live demo by using services like JSFiddle CodeSandbox CodePen and link it here in your README (attaching a screenshot/gif will also be a plus). To help you in this process here below you will find the necessary HTML/CSS/JS, so it just a matter of copy-pasting on some of those services. After that delete this part and update the link above

HTML

<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet">
<script src="https://unpkg.com/grapesjs"></script>
<script src="https://unpkg.com/grapesjs-openai"></script>

<div id="gjs"></div>

JS

const editor = grapesjs.init({
	container: '#gjs',
  height: '100%',
  fromElement: true,
  storageManager: false,
  plugins: ['grapesjs-openai'],
});

CSS

body, html {
  margin: 0;
  height: 100%;
}

Summary

  • Plugin name: grapesjs-openai
  • Components
    • component-id-1
    • component-id-2
    • ...
  • Blocks
    • block-id-1
    • block-id-2
    • ...

Options

Option Description Default
option1 Description option default value

Download

  • CDN
    • https://unpkg.com/grapesjs-openai
  • NPM
    • npm i grapesjs-openai
  • GIT
    • git clone https://github.com/rileyseaburg\/grapesjs-openai.git

Usage

Directly in the browser

<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-openai.min.js"></script>

<div id="gjs"></div>

<script type="text/javascript">
  var editor = grapesjs.init({
      container: '#gjs',
      // ...
      plugins: ['grapesjs-openai'],
      pluginsOpts: {
        'grapesjs-openai': { 
           apiKey: 'your-openai-api-key',
         }
      }
  });
</script>

Modern javascript

import grapesjs from 'grapesjs';
import plugin from 'grapesjs-openai';
import 'grapesjs/dist/css/grapes.min.css';

const editor = grapesjs.init({
  container : '#gjs',
  // ...
  plugins: [plugin],
  pluginsOpts: {
    [plugin]: { /* options */ }
  }
  // or
  plugins: [
    editor => plugin(editor, { /* options */ }),
  ],
});

Development

Clone the repository

$ git clone https://github.com/rileyseaburg\/grapesjs-openai.git
$ cd grapesjs-openai

Install dependencies

$ npm i

Start the dev server

$ npm start

Build the source

$ npm run build

License

MIT