Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 248909464 for ; Tue, 8 Nov 2011 17:02:50 +0000 (UTC) Received: (qmail 62176 invoked by uid 500); 8 Nov 2011 17:02:46 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 62145 invoked by uid 500); 8 Nov 2011 17:02:45 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 62137 invoked by uid 99); 8 Nov 2011 17:02:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2011 17:02:45 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of mikeal.rogers@gmail.com designates 209.85.216.45 as permitted sender) Received: from [209.85.216.45] (HELO mail-qw0-f45.google.com) (209.85.216.45) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2011 17:02:38 +0000 Received: by qadz3 with SMTP id z3so805590qad.11 for ; Tue, 08 Nov 2011 09:02:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; bh=4ljGF70wBbHeVzCLFkzUj4Cnm2zrT2yfwKbqccj5Pys=; b=ANuWzp7KbyxwYb8RaO+HnCvTrsDL7+Cn+xpZLt10POIJ79yJKcugV5Ibna+kPXbLIf fDmPJAdnvi1BMur8viDPMrQbR/USirqBF/aPA2JY/KuhVy+Kxl0WuK0I/iREbsT6YD+Z gL83nq6Dj6SIZxLRjEglC2h00ZPoJJnibez8g= Received: by 10.224.175.210 with SMTP id bb18mr15132137qab.51.1320771737315; Tue, 08 Nov 2011 09:02:17 -0800 (PST) Received: from [10.10.0.138] (67-131-100-3.dia.static.qwest.net. [67.131.100.3]) by mx.google.com with ESMTPS id dk1sm2060196qab.22.2011.11.08.09.02.16 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 08 Nov 2011 09:02:16 -0800 (PST) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Apple Message framework v1251.1) Subject: Re: nodejs couchapp From: Mikeal Rogers In-Reply-To: <4EB95D32.7010505@gmail.com> Date: Tue, 8 Nov 2011 09:02:27 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <48DFA539-4203-41F9-AB4A-D6DDEC9763BD@gmail.com> References: <4EB80D11.1080504@gmail.com> <4EB95D32.7010505@gmail.com> To: user@couchdb.apache.org X-Mailer: Apple Mail (2.1251.1) On Nov 8, 2011, at November 8, 20118:47 AM, john.tiger wrote: > On 11/07/11 15:14, Mikeal Rogers wrote: >> I wrote node-couchapp and i don't even remember what those flags did. = i have since changed the command line api. >>=20 >> couchapp push app.jshttp://localhost:5984/db >=20 > Thks. Wow, this is so simple and works great. >=20 > Now a question: since making a couch app is so easy, why are not more = people using it ? Are couch apps limited versus using a full MVC = backend (ie Express, Strata, ..) There are definitely limitations, pulling info in to the page that isn't = in your database isn't doable, _list and _show are pretty slow so you're = limited to single page apps if you want to keep things really fast.=20 For simple things, nothing is simpler than a couchapp, but as your app = gets more complex you're going to start doing backflips to get it to fit = in to the couchapp model. -Mikeal=