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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@rendley/video-editor-ui

v1.8.16

Published

A Video Editor UI for Rendley SDK

Readme

Video Editor UI

The Video Editor UI is a user interface built on top of the Rendley SDK that enables you to create and edit videos directly in your browser.

Video Editor Cover

Overview

This project is developed using the following technologies:

  • StencilJS: For building the user interface as web components.
  • SASS: For efficient and organized styling.
  • MobX: For state management, ensuring smooth and reactive UI updates.

Getting Started

Follow these steps to set up and run the project.

Installation

  1. Clone the Repository:
git clone https://github.com/rendleyhq/video-editor-ui.git
cd video-editor-ui
  1. Install Dependencies:

Use npm to install the necessary packages:

npm install
  1. Initial Build:

Before running the project for the first time, build it by executing:

npm run build
  1. Credentials:

To function correctly, the video editor requires a set of API keys, which should be provided in the index.html file. Below are the steps to obtain these keys:

  • Giphy API Key: To enable GIF search functionality, you'll need a Giphy API key. You can request one by following the instructions here: Request a Giphy API Key.

  • Pexels API Key: For accessing the Pexels image library, you'll need a Pexels API key. Obtain it by visiting: How to Get a Pexels API Key.

  • Rendley License Key: For rendering to work, you need a Rendley license key. You can get one at app.rendley.com.

Ensure that these API keys are correctly set in your project to enable all features of the video editor.

Running the Project

To start the development server and view the project in action, use the following command:

npm run start

Building the Project

The project is designed as a web component, making it easy to embed in any web application. To create a production-ready build, run:

npm run build

The build output is located in the dist folder. There are several ways to integrate this into your project:

1. Embed the Web Component

Host the contents of the dist folder in your public directory or on a CDN. Once hosted, you can import the video editor component by referencing the appropriate path, as outlined in the Rendley documentation.

2. Export as an NPM Package

Stencil provides the capability to package the project for different frameworks such as React.js, Vue.js, or Angular. These packages include TypeScript types, offering a familiar development experience. To learn more about setting this up, refer to the StencilJS Documentation.

FAQ

Why is @rollup/plugin-image being used?

We use @rollup/plugin-image to bundle image assets directly into your JavaScript as base64-encoded strings. This approach helps avoid encapsulation issues by keeping everything self-contained, making the assets easily accessible within the web components without worrying about external file paths or loading times.