jaridmargolin / formatter.js

Format html inputs to match a specified pattern
http://firstopinion.github.io/formatter.js
2.48k stars 235 forks source link

NPM #87

Open chrisvdb opened 9 years ago

chrisvdb commented 9 years ago

Would it be possible to publish this to NPM in addition to Bower?

'formatter' already seems to be taken, though: https://www.npmjs.com/package/formatter

kennydude commented 9 years ago

https://www.npmjs.com/package/formatter.js it's already on there

sibljon commented 9 years ago

When I npm install formatter.js and var Formatter = require('formatter.js');, I get the following error in the console:

Cannot find module 'pattern-matcher' from '/path/to/my/app/node_modules/formatter.js/dist/common'

but pattern-matcher.js is indeed in node_modules/formatter.js/dist/common.

Also, I have the following reported by Flow:

Failure("internal error: package /path/to/my/app/node_modules/formatter.js/package.json not found")

But package.json is indeed in that directory as well.

Apologies if I'm doing something wrong in my local setup (though I have been able to install many other modules via npm in the same app)! Just wanted to post this in case anyone else is having trouble using formatter.js via npm.

kennydude commented 9 years ago

I ran into this problem today, forked it and fixed the issue.

If you need it to work you can use https://github.com/mypebble/formatter.js

On Wednesday, 5 August 2015, Jonathan Sibley notifications@github.com wrote:

When I npm install formatter.js and var Formatter = require('formatter.js');, I get the following error in the console:

Cannot find module 'pattern-matcher' from '/path/to/my/app/node_modules/formatter.js/dist/common'

but pattern-matcher.js is indeed in node_modules/formatter.js/dist/common.

Also, I have the following reported by Flow:

Failure("internal error: package /path/to/my/app/node_modules/formatter.js/package.json not found")

But package.json is indeed in that directory as well.

Apologies if I'm doing something wrong in my local setup (though I have been able to install many other modules via npm in the same app)! Just wanted to post this in case anyone else is having trouble using formatter.js via npm.

— Reply to this email directly or view it on GitHub https://github.com/firstopinion/formatter.js/issues/87#issuecomment-128066381 .

chrisvdb commented 9 years ago

https://www.npmjs.com/package/formatter.js it's already on there

Thanks, that worked!

I'm leaving this issue open for now as sibljon's issue might not be resolved yet.

crobinson42 commented 8 years ago

+1 This is still an issue.

> var f = require("formatter.js")
Error: Cannot find module 'formatter.js'
    at Function.Module._resolveFilename (module.js:455:15)
    at Function.Module._load (module.js:403:25)
    at Module.require (module.js:483:17)
    at require (internal/module.js:20:19)
    at repl:1:9
    at sigintHandlersWrap (vm.js:22:35)
    at sigintHandlersWrap (vm.js:96:12)
    at ContextifyScript.Script.runInThisContext (vm.js:21:12)
    at REPLServer.defaultEval (repl.js:313:29)
    at bound (domain.js:280:14)
xavez commented 7 years ago

The issue with require still exists. I’m getting the following error

Cannot find module 'utils' from '/path/to/node_modules/formatter.js/dist/common'

When I

require('formatter.js');