
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@editframe/editframe-js
Advanced tools
The Editframe JS SDK is a Node.js library that allows developers to easily integrate Editframe into their web applications. Our goal is to make it extremely easy for software developers to incorporate video composition and editing experiences into their applications.
Note: This library currently only works in Node environments and does not work in a browser. Additionally, this should
only be used in server environments to protect your API key.
You can install the Editframe JS SDK using npm or yarn:
Npm
npm install @editframe/editframe-js
Yarn
yarn add @editframe/editframe-js
To get started with the Editframe JS SDK, you will need to obtain an API key from the Editframe dashboard.
Once you have your API key, you can create an instance of the Editframe class:
import { Editframe } from "@editframe/editframe-js"
const editframe = new Editframe({ token: "API_TOKEN" })
const composition = await editframe.videos.new(
{
backgroundColor: "#c400ac",
dimensions: {
height: 1080,
width: 1920,
},
duration: 10,
metadata: {
user_id: 1
},
},
"https://editframe.com/docs/composition/create-composition/puppy-beach.mp4"
);
await composition.encode();
For a complete reference of the Editframe JS SDK API, please see the API documentation.
FAQs
Node library for interacting with the Editframe API.
We found that @editframe/editframe-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.