Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aepx

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aepx

aepx to json coverter

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

aepx.js

License

This project tries to convert aepx to readable json.
Inspired by

Install

npm i aepx

Usage

.parse()

callback api

const aepx = require('aepx');

let data = '<AfterEffectsProject></AfterEffectsProject>';

aepx.parse(data, (err, project) => {
  console.log(project);
});

promise api

const aepx = require('aepx');

let data = '<AfterEffectsProject></AfterEffectsProject>';

aepx.parse(data)
  .then(project => console.log(project));

.parseSync()

const aepx = require('aepx');

let data = '<AfterEffectsProject></AfterEffectsProject>';

console.log(aepx.parseSync(data));

.parseFile()

callback api

const aepx = require('aepx');

aepx.parseFile('./input/empty.aepx', (err, project) => {
  console.log(project);
});

promise api

const aepx = require('aepx');

aepx.parseFile('./input/empty.aepx')
  .then(project => console.log(project));

.parseFileSync()

const aepx = require('aepx');

console.log(aepx.parseFileSync('./input/empty.aepx'));

License

  • MIT

Keywords

FAQs

Package last updated on 02 Apr 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc