[nodejs] Re: Checkout MVC for node js :: Sleek.js

2013-11-09 Thread Robin Samuel
We don't want to copy express functions to a new file, with new name. And we didn't rename render to loadView. loadView do some extra functions. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this m

[nodejs] Re: Checkout MVC for node js :: Sleek.js

2013-11-09 Thread Robin Samuel
Ok. Now its only a boilerplate, that generates a structure. Provides some functions like theming for a web application. And we hope it helps someone, in its way. We have already mentioned, we jus combine those module, to make the structure. Added a config file enable express multipart optionally

Re: [nodejs] Re: Edit existing pdf in node

2013-11-09 Thread Mark Hahn
> convert the html back to a pdf using something like jspdf. I don't know if anyone on this list has had better luck, but I spent almost a week trying every html to pdf solution I could find and every one had some fatal flaw. Just saying. On Sat, Nov 9, 2013 at 1:58 PM, Morgan Herlocker wrote

[nodejs] Re: Edit existing pdf in node

2013-11-09 Thread Morgan Herlocker
I do not know of any existing solutions, but I would do something like this: 1) convert pdf to html using https://github.com/coolwanglu/pdf2htmlEX 2) manipulate the html however you need to. You could probably use cheerio for easier dom manipulation. https://github.com/MatthewMueller/cheerio 3)

Re: [nodejs] Need help for tracking down memory-leak(?)/gc(?)/programming error(?) in node-v0.10.21 (and other elder versions)

2013-11-09 Thread Ben Noordhuis
On Sat, Nov 9, 2013 at 9:49 PM, Peter Bauer wrote: > Hi, > > I have some nodejs-program which uses up all memory available. When calling > gc frequently, the problem can be avoided. But whithout gc > the problem occurs regardless of architecture and node version (tried 0.10.5 > and successors/linu

[nodejs] Need help for tracking down memory-leak(?)/gc(?)/programming error(?) in node-v0.10.21 (and other elder versions)

2013-11-09 Thread Peter Bauer
Hi, I have some nodejs-program which uses up all memory available. When calling gc frequently, the problem can be avoided. But whithout gc the problem occurs regardless of architecture and node version (tried 0.10.5 and successors/linux windows arm) On linux, in order to avoid machine lock-up,

Re: [nodejs] Checkout MVC for node js :: Sleek.js

2013-11-09 Thread Oleg Slobodskoi
fully agree with Alex ... Best, Oleg Slobodskoi http://www.facebook.com/oleg.slobodskoi https://www.xing.com/profile/Oleg_Slobodskoi https://twitter.com/oleg008 https://github.com/kof Am 09.11.2013 um 09:59 schrieb Alex Kocharin : > > MVC is not a folder structure (it's called "cargo cult", n

[nodejs] Edit existing pdf in node

2013-11-09 Thread santa
Hello All, Is there a library to edit an existing pdf in node? Thanks, Santosh -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" gr

[nodejs] Re: Checkout MVC for node js :: Sleek.js

2013-11-09 Thread Alex Kocharin
MVC is not a folder structure (it's called "cargo cult", not MVC). MVC is not a bunch of "built-in" dependencies and a big config file to disable them (it's called "bloatware", not MVC). MVC is an idea that you separate database calls, rendering and a presentation(*) layer in between. Express.