Beginning Web Development on Plan 9 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T14:27:37Z http://stackoverflow.com/feeds/question/91211 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91211/beginning-web-development-on-plan-9 5 Beginning Web Development on Plan 9 Joseph Holsten 2008-09-18T09:30:28Z 2009-10-19T17:55:30Z <p>I've been wanting to program for the Plan 9 operating system for a while. I'd really like to play around with a web app there. Of course, the only language I know for Plan 9 is C, and that doesn't seem ideal for web development. I also understand that it doesn't run apache or mysql either.</p> <p>What is the best way to start coding web apps on Plan 9?</p> http://stackoverflow.com/questions/91211/beginning-web-development-on-plan-9/91446#91446 3 Answer by underspecified for Beginning Web Development on Plan 9 underspecified 2008-09-18T10:20:02Z 2008-09-18T10:20:02Z <p>Check out Kenji Arisawa's <a href="http://plan9.aichi-u.ac.jp/netlib/pegasus/" rel="nofollow">Pegasus</a> (<a href="http://lsub.org/iwp9/cready/pegasus-5.pdf" rel="nofollow">paper</a>) webserver for Plan 9.</p> <p>Plan 9 may have a reputation for being C-only, but several langauges, including Scheme, Ruby, Python, and Perl have been ported. Check out the <a href="http://plan9.bell-labs.com/wiki/plan9/Contrib_index/index.html" rel="nofollow">Contrib Index</a> for the code.</p> <p>Finally, start reading the Plan 9 <a href="http://plan9.bell-labs.com/wiki/plan9/Documentation/index.html" rel="nofollow">white papers</a> so that you can understand its philosophy. If you want to do net-related things, the file protocol <a href="http://plan9.bell-labs.com/sources/contrib/uriel/doc/charles/servers.pdf" rel="nofollow">9p</a> is essential.</p> http://stackoverflow.com/questions/91211/beginning-web-development-on-plan-9/1590142#1590142 0 Answer by uriel for Beginning Web Development on Plan 9 uriel 2009-10-19T17:55:30Z 2009-10-19T17:55:30Z <p><a href="http://werc.cat-v.org" rel="nofollow">Werc</a> is a web framework designed to run on Plan 9 (and Plan 9 from User Space). It is built using the rc shell and following the classic Bell Labs 'tool philosophy'.</p> <p>Instead of a database, in keeping with the Unix tradition it uses plain text files stored in a file system.</p>