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

baby-tolk

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baby-tolk

A file reader that promises to translate non-web assets to web assets given the available transpilers, sourcemaps and all

  • 5.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

Baby Tolk

npm version Build Status Coverage Status Dependency Status

This is based on the Tolk library but does less things based on the "small modules that do one thing" philosophy. Specifically, it doesn't inline sourcemaps and doesn't autoprefix CSS. It can also optionally minify assets, which Tolk doesn't support.

Baby Tolk is a "do the right thing" tool for transpiling. It reads a file from the file system, transpiles it (including sourcemaps where supported) with the available transpilers. It can also optionally minify the output.

Returns a promise that resolves with the resulting transpiler output.

Installing the individual transpilers baby tolk should use is up to the consumer. There are no transpiler dependencies out of the box. So if you only need babel and sass, install babel and node-sass.

Tolk is useful for tools that handle precompiling for you, but might also be used directly in your task runner of preference in order to skip some of the many plugins that do the same but worse.

Current precompiler support: LiveScript, babel, coco, coffee-script, dogescript, less, marked, myth, node-sass, stylus, swig

Usage

npm install baby-tolk

Out of the box this won't transpile anything (but it can minify html, css and JS). In order to do more, for example babel and sass, also do this:

npm install node-sass babel

Now you are ready to start reading files from the file system. Baby Tolk automatically loads the transpilers it has access to in the scope it is run in. You can change the scope by setting the global.babyTolkCompilerModulePath variable path. By convention Baby Tolk won't compile any files if the filename begins with an underscore _ character.

// you can set `global.babyTolkCompilerModulePath` to a specific node_modules folder if desired
// global.babyTolkCompilerModulePath = '/some/folder/node_modules';
var babyTolk = require('baby-tolk');

babyTolk.loadAdapters();

babyTolk.read('path/to/stylesheet.scss').then(function (compiled) {
  // compiled.result is the transpiled output as a string
  console.log(compiled.result);

  // compiled.sourcemap is the transpiled output as an object
  // You can use JSON.stringify to convert it to a string
  console.log(JSON.stringify(compiled.sourcemap));
}, function (err) {
  // In case anything failed
  throw err;
});

Want the output to be minified?


babyTolk.read('path/to/stylesheet.scss', {minify: true}).then([success], [fail]);

You can also minify vanilla css/js/html files without the transpilation step.


babyTolk.read('path/to/app.js', {minify: true}).then([success], [fail]);

It's also possible to turn source-maps off.


babyTolk.read('path/to/app.js', {sourceMaps: false}).then([success], [fail]);

License

(The MIT License)

Copyright (c) 2015 Dave Jeffery dave@davejeffery.com Copyright (c) 2015 Peter Müller munter@fumle.dk

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 16 Mar 2017

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