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

brukerconverter

Package Overview
Dependencies
Maintainers
6
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

brukerconverter

Parse and convert Bruker raw data

  • 3.1.1
  • npm
  • Socket score

Version published
Weekly downloads
165
decreased by-51.47%
Maintainers
6
Weekly downloads
 
Created
Source

#brukerconverter

[![NPM version][npm-image]][npm-url] [![build status][travis-image]][travis-url] [![David deps][david-image]][david-url] [![npm download][download-image]][download-url]

Installation

Node JS

npm install brukerconverter

Bower

bower install brukerconverter

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
grunt

Keywords

FAQs

Package last updated on 06 Mar 2021

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