twitter / hogan.js

A compiler for the Mustache templating language
http://twitter.github.io/hogan.js
Apache License 2.0
5.14k stars 431 forks source link

NPM "official" hogan package => @bmullan91 #228

Closed mysegfault closed 8 years ago

mysegfault commented 8 years ago

Hi!

When you do npm install hogan it will download the bmullan91 repository and not the official GIT repository. First consequence is that it's not clear for the developer, also the "hulk" binary does not appear in the ./node_modules/.bin folder.

Why not use the official GIT repository? npm install https://github.com/twitter/hogan.js.git works great.

Note: if the reason why is because if this: var hogan = require('hogan.js'); instead of: var hogan = require('hogan');

you should specify the "bin": { "hulk": "./node_modules/hogan.js/bin/hulk" } in the bmullan91/hogan.git repository.

Thanks!

davidosomething commented 8 years ago

the package is hogan.js npm install hogan.js

mysegfault commented 8 years ago

You are right. It's all fine then.