🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

code-sample-editor

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

code-sample-editor

A multi-file code editor component with live preview

0.1.0-pre.2
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

code-sample-editor

A multi-file code editor component with live preview

Introduction

<code-sample-editor> is a web component that allows you to embed multi-file, editable, live-preview code examples that use JavaScript, TypeScript, HTML and CSS. It's like a mini-IDE that you can embed many times in a page, and it works without a server!

Features

No server-required

<code-sample-editor> uses a service worker to send files from the main page to the preview iframe. Users can edit examples locally and the edited files are served to the iframe without ever hitting the network. This means you can use <code-sample-editor> with a static file server, and preview reloads are ultra-fast!

Multi-file unbundled editing

<code-sample-editor> serves each file indivdually to the preview iframe, instead of bundling them first. This gives faster refresh times and means taht you can utilize the standard web platform features in your examples without a bundler getting in the way and potentially breaking things. The experience is very much like working wtih a static file server.

HTML can have multiple <script> and <link> tags, even dynamically added. CSS can use @import and url(). JavaScript can use import.meta.url, dynamic import(), and fetch(). You can even have page navigations to other HTML files. It all just works.

Bare-module specifiers support

Standard JavaScript modules are great, but currently they lack one feature that has such overwhelming use and utility that we included support for it: base module specifiers.

If you import a module by name, like:

import {html, render} from 'lit-html';

<code-sample-editor> will automatically rewrite the import specifier to use unpkg.com URLs:

import {html, render} from 'https://unpkg.com/lit-html?module';

TypeScript support

Besides standard JavaScript, <code-sample-editor> supports TypeScript files, which are automatically transpiled to JavaScript in a web worker.

The TypeScript worker behaves exactly like the tsc compiler does, so the examples match local code. This means that when you import other TypeScript files, you do with with a .js extension, which matches the compiler output.

my-element.ts

import {LitElement, html, customElement} from 'lit-element';

@customElement('my-element')
class MyElement extends LitElement { /* ... */ }

index.html

<script type="module" src="my-element.js"></script>

Note the filename of my-element.js.

Inline or external sources

You can define an example entirely in HTML for simplicity:

<code-sample-editor>
  <script type="sample/html" filename="index.html">
    <script type="module" src="my-element.js">&lt;/script>
    <h1>Hello World!</h1>
    <my-element></my-element>
  </script>
  <script type="sample/js" filename="my-element.js">
    import {LitElement, html, customElement} from 'lit-element';

    class MyElement extends LitElement { /* ... */ }
    customElements.define('my-element', MyElement);
  </script>
</code-sample-editor>

Or define your project in a JSON manifest:

<code-sample-editor project-src="./example-1.json"></code-sample-editor>

example-1.json:

{
  "files": {
    "index.html": {},
    "my-element.js": {},
    "my-second-element.js": {}
  }
}

Getting Started

Install with npm:

npm i code-sample-editor

Load the component definition:

<script
  type="module" 
  src="/node_modules/code-sample-editor/lib/code-sample-editor.js">
</script>

Use the component:

<code-sample-editor project-src="./example-1.json"></code-sample-editor>

<code-sample-editor> uses bare module specifiers in its code, so you'll need a server that supports rewriting module specifiers with the Node module resolution algorithm, or a build tool like Rollup.

<code-sample-editor> also uses import.meta.url to load the worker scripts. note that Webpack does not support that currently.

Usage

<code-sample-editor> can either be used with inline files, or with external files and a project manifest. The two modes cannot be mixed.

Every project must have an index.html. Currently this is the only file that the preview iframe will request on startup and reload.

Inline files

Sample files can be defined inline with <script> tags. The tags must have type and filename attributes:

  • type: one of sample/js, sample/ts,sample/html, or sample/css
  • filename: the filename to display and use for network requests.

Example:

<code-sample-editor>
  <script type="sample/html" filename="index.html">
    <script type="module" src="my-element.js">&lt;/script>
    <h1>Hello World!</h1>
    <my-element></my-element>
  </script>
  <script type="sample/js" filename="my-element.js">
    import {LitElement, html, customElement} from 'lit-element';

    class MyElement extends LitElement { /* ... */ }
    customElements.define('my-element', MyElement);
  </script>
</code-sample-editor>

Project manifest

With a project manifest the sample files are listed in a JSON file. The JSON file is specified in the project-src attribute:

<code-sample-editor project-src="./example-1.json"></code-sample-editor>

Manifest: example-1.json:

{
  "files": {
    "index.html": {},
    "my-element.js": {},
    "my-second-element.js": {}
  }
}

The files are resolved relative to the manifest. It's probably a good idea to have a folder per sample, containing the files and the manifest:

example-1
├── index.html
├── my-element.js
├── my-second-element.js
└── example-1.json

Development

After cloning the repo:

npm install

# runs npm run watch and npm run serve at the same time
npm run dev

Open your browser to http://localhost:8081/demo/ to see the demo.

Project organization

The project is organized into multiple TypeScript projects, one for each browser/worker environment, and one shared project. They reference each other via TypeScript project references and are built together with the --build flag to tsc.

FAQs

Package last updated on 12 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts