Socket
Socket
Sign inDemoInstall

coffeekraken-compile-server

Package Overview
Dependencies
21
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    coffeekraken-compile-server

Provide a simple rest API for compiling js, coffee, sass, scss, etc... files through a node server


Version published
Weekly downloads
12
increased by200%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Coffeekraken Compile Server

Provide a simple rest API for compiling js, coffee, sass, scss, etc... files through a node server

Table of content

  1. Install
  2. Get Started
  3. Documentatopm
  4. Contribute
  5. Who are Coffeekraken?
  6. Licence

Install

# using yarn
yarn add coffeekraken-compile-server --dev

# using npm
npm install coffeekraken-compile-server --save-dev

Get Started

Define a script inside your package.json to launch the compile server.

{
	"scripts": {
		"compile-server": "coffeekraken-compile-server [options]"
	}
}

Launch your compile server:

# using yarn
yarn run compile-server

# usin npm
npm run compile-server

Import the API into your javascript file like so:

import compileServer from 'coffeekraken-compile-server'

// make a js compilation
const myCoolJsCode = `
	console.log("hello world")
`
compileServer.compile(myCoolJsCode, 'js').then((compiledCode) => {
 	// do something here...
});

// make a scss compilation
const myCoolScssCode = `
	.hello {
		.world {
			background: red;
		}
	}
`
compileServer.compile(myCoolScssCode, 'scss').then((compiledCode) => {
 	// do something here...
});

Documentation

Here's the documentation list:

Contribute

This is an open source project and will ever be! You are more that welcomed to contribute to his development and make it more awesome every day. To do so, you have several possibilities:

  1. Share the love ❤️
  2. Declare issues
  3. Fix issues
  4. Add features
  5. Build web component

Who are Coffeekraken

We try to be some cool guys that build some cool tools to make our (and yours hopefully) every day life better.

More on who we are

License

The code is available under the MIT license. This mean that you can use, modify, or do whatever you want with it. This mean also that it is shipped to you for free, so don't be a hater and if you find some issues, etc... feel free to contribute instead of sharing your frustrations on social networks like an asshole...

Keywords

FAQs

Last updated on 01 Apr 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc