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

jcampconverter

Package Overview
Dependencies
Maintainers
2
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jcampconverter

Parse and convert JCAMP data

  • 2.0.3
  • npm
  • Socket score

Version published
Weekly downloads
407
decreased by-63.95%
Maintainers
2
Weekly downloads
 
Created
Source

JCAMP converter

Installation

Node JS

npm install jcampconverter

Bower

bower install jcampconverter

Methods

convert(jcamp, [options], [useWorker])

Converts the jcamp using options.

Arguments

  • jcamp - String containing the JCAMP data
  • options - Object with options to pass to the converter
  • useWorker - Browser only: convert in a web worker (default: false). If this option is set to true, it will return a Promise.

Options

  • keepSpectra - Generate array for 2D NMR spectra (default: false)

Use as a module

####Node JS

var converter = require('jcampconverter');
var jcamp = require('fs').readFileSync('path/to/jcamp.dx').toString();

var result = converter.convert(jcamp);
AMD
require(['jcampconverter'], function(JcampConverter) {
    // Use the worker
    JcampConverter.convert(jcamp, true).then(function (result) {
        // Do something with result
    });
});

Testing and build

npm install
npm run build

Keywords

FAQs

Package last updated on 23 Jan 2015

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