[nodejs] Opitions about using getters and assertions

2015-06-08 Thread Denis Bardadym
Hello, all. I am working with should.js and there is one issue that i would like to see more opinions (https://github.com/shouldjs/should.js/pull/64). It is about replacing all getter assertions with function variants (aka .ok -> .ok() ). Purpose of this to remove false positive results when yo

[nodejs] [ANN] charset-detector

2014-10-22 Thread Denis Bardadym
Hi group. I did a port of ICU character detection to javascript. (the same charset detection used in chromium e.g) NPM module: charset-detector Repo: https://github.com/btd/node-charset-detector I did it for several reasons: to replace my binding for icu4c in one of my projects, to learn a bit

Re: [nodejs] A comparison of the Bunyan and Winston Node.js logging frameworks by Alex Gorbatchev

2014-06-24 Thread Denis Bardadym
Well, it will be good to include 'intel' logger also, it is quite nice, maybe not popular, but whom came from more old languages will see its advantages from first view. 2014-06-24 20:38 GMT+04:00 Shubhra Kar : > We often try to choose the right logging framework for Node.js projects. > Check th

Re: [nodejs] Write nodejs in java

2014-04-13 Thread Denis Bardadym
You can wait for java 8 (which has nashorn js engine) and project avalon, which is node.js compatible runtime for nashorn. 2014-04-14 9:55 GMT+04:00 Tim De Lange : > Node is all about Javascript. If you would like to do something > similar in Java, try http://vertx.io > > > > On Mon, Apr 14, 201

Re: [nodejs] Linux signals usage

2013-11-28 Thread Denis Bardadym
‘make dump’, ‘rotate logs’, ‘run debugger’, etc. 28 нояб. 2013 г., в 15:29, Brian Lalor написал(а): > On Nov 28, 2013, at 4:33 AM, Denis Bardadym wrote: > >> So if i want to use more then one ‘such’ module, is any way to do not make >> them to do not interact each other? Maybe a

[nodejs] Linux signals usage

2013-11-28 Thread Denis Bardadym
Hi, all. I a bit confused with such situation. Node.js reserve SIGUSR1 to run embedded debugger, most of development modules use SIGUSR2 (as i remember only 2 signals for user own usage) to run their job (node-heapdump, node-inspector (actually it uses SIGUSR1, but idea the same), etc). I use S

Re: [nodejs] npm in production

2013-11-15 Thread Denis Bardadym
Nope, in production usually node_modules gzipped together with application and installed just ungzip and run. Never any untested version should go to prod. 15 нояб. 2013 г., в 14:36, Sam Darwin написал(а): > > when deploying node.js code onto production servers, we run "npm install" as > one

Re: [nodejs] [Poll/RFC] Remove the built-in debugger

2013-11-12 Thread Denis Bardadym
I would like to add, that while CLI debugger is official, after remove will rest only NOT official modules. I can understand while you want to remove it, but without official tool, it is a bit scary =) 12 нояб. 2013 г., в 19:38, Ben Noordhuis написал(а): > The built-in debugger is a major pain

НА: [nodejs] Which CSS compressor?

2013-08-08 Thread Denis Bardadym
Hi. I have used csso. Denis. -- От: James Coglan Отправлено: 08.08.2013 3:27 Кому: Node list Тема: [nodejs] Which CSS compressor? Quick question: can someone recommend a CSS compressor library? I've tried clean-css but the fact that it silently ignores when files

НА: [nodejs] Re: Asset management in node.js

2013-08-07 Thread Denis Bardadym
Try to see nodeca/mincer it is full port of sprockets if you know what is it. I successfully use it with connect. BR, Denis -- От: David Beck Отправлено: 07.08.2013 21:18 Кому: nodejs@googlegroups.com Тема: [nodejs] Re: Asset management in node.js Cartero is new op

НА: [nodejs] Re: Asset management in node.js

2013-08-07 Thread Denis Bardadym
Try to see nodeca/mincer it is full port of sprockets if you know what is it. I successfully use it with connect. BR, Denis -- От: David Beck Отправлено: 07.08.2013 21:18 Кому: nodejs@googlegroups.com Тема: [nodejs] Re: Asset management in node.js Cartero is new op

Re: [nodejs] Node.js Reverse Proxy/Load Balancer

2013-05-08 Thread Denis Bardadym
Hi. Nginx supports Http/1.1. See http://nginx.org/en/docs/http/ngx_http_upstream_module.html this will help to configure load balancer. 08.05.2013, в 20:31, David Cunha написал(а): > Hi folks, > > I am checking node-http-proxy and nodejs-proxy to build a DIY reverse > proxy/load balancer i

[nodejs] Re: Node.js VS Scala VS Clojure: what for an API with a we-love-java-we-dont-even-know-why business component in the company?

2013-02-27 Thread Denis Bardadym
Hi. If you want honest comparison write the same in Scala mailing list (scala-u...@googlegroups.com) (i did not see your msg in scala group). Other guys said alsmost nothing about choise you have on JVM. If you want really async you can use Netty or Apache MINA (it is low level framewors). But