Can I write npm package in coffeescript?

2019-01-29 19:48发布

I have used coffeescript for a while. Now I need to write a npm package, can I write it in coffeescript, or I should compile coffeescript into javascript?

5条回答
成全新的幸福
2楼-- · 2019-01-29 20:20

I have written npm packages in CoffeeScript from scratch. I encourage you to use CoffeScript for node as well as for the Browser. However, before you can use or publish your module, you have to compile the source CoffeeScript to JavaScript. That should not hold you back from using CoffeeScript, though.

Tip: While developing, use coffee -cw yourfile.coffee (command line) to watch the file for changes and compile on save.

查看更多
唯我独甜
3楼-- · 2019-01-29 20:32

I'm going to suggest that you write your package in coffeescript, but only publish it in javascript. I do it like this:

  • coffeescript code goes in src
  • code is compiled to lib
  • src is committed to my git repo, lib is in my .gitignore
  • lib is published to npm, src is in my .npmignore
  • the coffee-script package is in my devDependencies

You can take a look at a simple package of mine, refix, for inspiration:

查看更多
走好不送
4楼-- · 2019-01-29 20:32

If a lot of your modules have coffee-script in their devDependencies, it's useful to just globally install coffee-script instead of install it for each module (which takes much longer).

coffee-build is a global version manager for coffee-script.

Just add these 2 scripts to your package.json:

{
  "name": "my-coffee-module",
  "scripts": {
    "build": "coffee-build -v 1.11.x -b -o js src",
    "postinstall": "npm run build"
  }
}

Notice how -v 1.11.x is not an exact version, which allows implicit upgrades.

The only downfall is that users must npm install -g coffee-build before they can install your module.

查看更多
对你真心纯属浪费
5楼-- · 2019-01-29 20:35

You can write NPM modules in coffeescript, but in order for them to be usable by JS users they must be compiled to JS before you publish on NPM.

package.json makes this easy with their prepublish script hook which runs the specified script before you publish. Heres an example of a prepublish NPM hook in zombie.js

https://github.com/assaf/zombie/blob/master/package.json#L16

查看更多
爷的心禁止访问
6楼-- · 2019-01-29 20:35

While I'm not sure if it's the best approach, technically it is possible to write your package mostly in CoffeeScript.

Basically, you can write a JS file that simply wraps the coffee command, like so:

bin/howl.coffee

console.log 'Awwwooooo!'

bin/howl.js

#!/usr/bin/env node

var path    = require('path');
var exec    = require('child_process').exec;
var coffee  = path.resolve(__dirname, '../node_modules/coffee-script/bin/coffee');
var howl    = path.resolve(__dirname, './howl.coffee');
var command = coffee + ' ' + howl;

exec(command, function(error, stdout) {
  if (error) { throw error };
  console.log(stdout);
});

Running node howl.js (or simply howl when it's installed globally) will now output Awwooooo!. You can do things like require other CoffeeScript files and access arguments by passing them from the JavaScript "wrapper" to the CoffeeScript.

Anyway, there may be reasons not to do this, but it has worked for me so far so figured I'd submit this for an additional perspective.

For a simple example project using this technique, check out https://www.github.com/joshuabc/packdown.

查看更多
登录 后发表回答