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

gulp-archieml

Package Overview
Dependencies
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-archieml

A Gulp plugin for parsing ArchieML files.

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-46.15%
Maintainers
5
Weekly downloads
 
Created
Source

gulp-archieml

CircleCI npm GitHub license

A Gulp plugin for parsing Archie Markup Language (ArchieML) files into JSON using archieml-js.

From ArchieML.org:

ArchieML (or "AML") was created at The New York Times to make it easier to write and edit structured text on deadline that could be rendered in web pages, or more specifically, rendered in interactive graphics.

See the ArchieML spec and ArchieML.org for more information if you're interested in learning more about the language.

Install

$ npm install --save-dev gulp-archieml

Usage

const gulp = require('gulp');
const archieml = require('gulp-archieml');

gulp.task('test', () => gulp.src('./path/to/*.aml')
  .pipe(archieml())
  .pipe(gulp.dest('./path/to/json/output/')));

Tests

Tests (written in Mocha) can be run using:

$ npm test

Coverage is calculated using Istanbul and output to the coverage folder:

$ open coverage/index.html

License

MIT ©2016 The Dallas Morning News

Keywords

FAQs

Package last updated on 07 Aug 2018

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