<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://logicwiki.co.uk/index.php?action=history&amp;feed=atom&amp;title=Web_server</id>
		<title>Web server - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://logicwiki.co.uk/index.php?action=history&amp;feed=atom&amp;title=Web_server"/>
		<link rel="alternate" type="text/html" href="https://logicwiki.co.uk/index.php?title=Web_server&amp;action=history"/>
		<updated>2026-07-06T00:55:33Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>https://logicwiki.co.uk/index.php?title=Web_server&amp;diff=547&amp;oldid=prev</id>
		<title>Dt1nh6: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://logicwiki.co.uk/index.php?title=Web_server&amp;diff=547&amp;oldid=prev"/>
				<updated>2016-05-09T13:27:41Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 13:27, 9 May 2016&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Dt1nh6</name></author>	</entry>

	<entry>
		<id>https://logicwiki.co.uk/index.php?title=Web_server&amp;diff=546&amp;oldid=prev</id>
		<title>Macrop: /* Nodejs */</title>
		<link rel="alternate" type="text/html" href="https://logicwiki.co.uk/index.php?title=Web_server&amp;diff=546&amp;oldid=prev"/>
				<updated>2015-07-08T08:14:41Z</updated>
		
		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Nodejs&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Category:JQuery]]&lt;br /&gt;
[[Category:Web Services]]&lt;br /&gt;
[[Category:Web Servers]]&lt;br /&gt;
&lt;br /&gt;
== Mongoose (Google) ==&lt;br /&gt;
http://code.google.com/p/mongoose/&lt;br /&gt;
&lt;br /&gt;
Mongoose is the most easy to use web server on the planet. A web server of choice for Web developers (PHP, Ruby, Python, etc) and Web designers.&lt;br /&gt;
&lt;br /&gt;
== Nodejs ==&lt;br /&gt;
https://nodejs.org/&lt;br /&gt;
&lt;br /&gt;
Node.js® is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.&lt;br /&gt;
&lt;br /&gt;
After installing node.js create a '''webserver.js''' file in installation folder&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:java;&amp;quot;&amp;gt;&lt;br /&gt;
var connect = require('connect');&lt;br /&gt;
var serveStatic = require('serve-static');&lt;br /&gt;
&lt;br /&gt;
var app = connect();&lt;br /&gt;
app.use(serveStatic(&amp;quot;../Work/UnravealNg&amp;quot;));&lt;br /&gt;
app.listen(5100);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
after that you can browse http://localhost:5100 and put files into UnravealNg folder to run.&lt;br /&gt;
&lt;br /&gt;
But first run these commands in installation folder&lt;br /&gt;
 npm install connect&lt;br /&gt;
 npm install serve-static&lt;br /&gt;
start newly created web server with this command&lt;br /&gt;
 node webserver.js&lt;br /&gt;
&lt;br /&gt;
== IIS ==&lt;br /&gt;
&lt;br /&gt;
== Apache ==&lt;/div&gt;</summary>
		<author><name>Macrop</name></author>	</entry>

	</feed>