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

koala

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koala

Code syntax highlighting library

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
41
decreased by-14.58%
Maintainers
0
Weekly downloads
 
Created
Source

Koala

Koala is a node.js syntax highlighting library.

Features

  • Fast
  • Pure JavaScript
  • Simple grammar definitions
  • Supported languages:
    • JavaScript
    • Ruby
    • C

Installation

Install the Kiwi package manager for nodejs and run:

  $ kiwi install koala

Example

$ node examples/koala.js > yay.html && open -a Safari yay.html $ node examples/koala.js examples/example.rb > yay.html && open -a Safari yay.html

Usage

auto-detection approach:

var sys = require('sys'), fs = require('fs'), koala = require('koala')

var file = 'path/to/some.js', var html = koala.render(file, fs.readFileSync(file)) sys.puts(html)

manual approach:

var sys = require('sys'), HTML = require('koala/formatters/html').HTML, Ruby = require('koala/grammars/ruby').Ruby

sys.puts(HTML.render(Ruby, 'a string of ruby'))

Benchmarks

Extensive benchmarking and comparisons are not yet available, however quick benchmarking on my macbook pro show the HTML formatter can render a 1600 byte file of JavaScript (65 lines) 100 times in 0.5 seconds.

Testing

Koala uses JSpec for testing, to run all sites simply run:

$ make test

or

$ node spec/node.js

Contributors

  • TJ Holwaychuk (visionmedia)

License

(The MIT License)

Copyright (c) 2009 TJ Holowaychuk <tj@vision-media.ca>

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.

FAQs

Package last updated on 16 Jun 2014

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