npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mustafa-sts

v1.0.57

Published

![GrapesJS Studio SDK editor](https://grapesjs.com/docs/studio-banner.jpg)

Readme

🍇 GrapesJS Studio SDK

GrapesJS Studio SDK editor

Studio SDK is a developer toolkit that helps you embed production-ready visual builders into your applications faster than ever.

Built on top of the battle-tested GrapesJS, it’s designed for companies that want to focus on their core product value while delivering a world-class no-code editing experience for their users, without the hassle.

With Studio SDK, you can create:

🚀 Why Studio SDK?

  • Fast to production: Save months of dev time with advanced built-in capabilities.

  • 🧑‍💻 Works with any frontend stack: React, Vue, Angular, or plain JavaScript, no framework lock-in.

  • 🔓 No vendor lock-in: All data and assets stay in your infrastructure.

  • 🛠 Embedded in your codebase: No iframes or external SaaS platforms, Studio SDK lives inside your app with no third-party dependency risk.

  • 🔌 Leverage the GrapesJS ecosystem: Studio SDK is built on top of GrapesJS, allowing you to use existing GrapesJS plugins and reuse custom components you already built.

  • 🧑‍💻 Built for developers: A clean API surface that works with any modern JS stack.

✨ Features

  • 🧱 Custom Blocks & Components

    Build reusable Blocks or register your own Components for users to drag & drop.

  • 📄 Multi-Page Support

    Create multi-page websites with built-in SEO controls for meta, titles, and favicons.

  • 🎨 Themes & Layout API

    Match the editor UI to your brand with Themes and Layouts for perfect white-label integration.

  • 🌐 Global Styles

    Apply Global Styles as a design system of your templates and manage typography, colors, and spacing at scale.

  • 📂 Enhanced Asset & Fonts Manager

    Fully control the Asset Manager and Font Manager, and extend them with custom Asset Providers for any storage or API.

  • 🗂 Template Manager

    Let users pick from your pre-defined Templates to get started quickly.

  • 🔌 Data Sources & Template Engines

    Connect the editor to your Data Sources, integrate with any Template Engine, and let users build dynamic, data-driven content.

📦 Installation

npm i @grapesjs/studio-sdk

🏗 Quick Start

Here’s how easy it is to embed Studio SDK in your React application:

import StudioEditor from '@grapesjs/studio-sdk/react';
import '@grapesjs/studio-sdk/style';

export function YourApp() {
  return (
    <StudioEditor
      options={{
        // ...
        // Any license key is valid from localhost, you can play with locally with no restrictions
        licenseKey: 'DEV_LICENSE_KEY',
        project: {
          type: 'web',
          // The default project to use for new projects
          default: { pages: [{ name: 'Home', component: '<h1>Home page</h1>' }] }
        }
      }}
    />
  );
}

You can use the same initialization pattern in other JavaScript frameworks.

import createStudioEditor from '@grapesjs/studio-sdk';
import '@grapesjs/studio-sdk/style';

// ...
createStudioEditor({
  // ...
  root: '#studio', // indicate where to mount the editor
  licenseKey: 'DEV_LICENSE_KEY',
  project: {
    type: 'web',
    default: { pages: [{ name: 'Home', component: '<h1>Home page</h1>' }] }
  }
});

You now have a fully functional no-code builder.

📖 Documentation

Check out the full docs here 👉 Studio SDK Docs