New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@codify-dev/api-server

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

@codify-dev/api-server

API server for Codify Dev - HTTP API bridge to browser extension.

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

@codify-dev/api-server

HTTP API server for Codify Dev browser extension.

Quick Start

npx @codify-dev/api-server

The server will start on http://127.0.0.1:13580 by default.

Environment Variables

VariableDefaultDescription
API_PORT13580HTTP API port
API_WS_PORT13581WebSocket port

API

GET / — Status

curl http://127.0.0.1:13580/
{ "ready": true, "platform": "figma" }

POST /get_design — Get Design Data

curl -X POST http://127.0.0.1:13580/get_design \
  -H "Content-Type: application/json" \
  -d '{ "nodeId": "123:456" }'

POST /get_screenshot — Get Screenshot

curl -X POST http://127.0.0.1:13580/get_screenshot \
  -H "Content-Type: application/json" \
  -d '{ "nodeId": "123:456" }'

POST /get_assets — Export Assets

curl -X POST http://127.0.0.1:13580/get_assets \
  -H "Content-Type: application/json" \
  -d '{
    "nodes": [
      { "nodeId": "123:500", "format": "png", "scale": 2 },
      { "nodeId": "123:501", "format": "svg" }
    ]
  }'

Architecture

Agent ──HTTP──► API Server ◄──WebSocket── Browser Extension

Requirements

  • Node.js 18+
  • Codify Dev browser extension

Keywords

codify

FAQs

Package last updated on 29 Mar 2026

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