Git Product home page Git Product logo

nginx-clojure's Introduction

Nginx-Clojure

Alt textNginx-Clojure is a Nginx module for embedding Clojure or Java or Groovy programs, typically those Ring based handlers.

There are some core features :

  1. Compatible with Ring and obviously supports those Ring based frameworks, such as Compojure etc.
  2. Use Clojure / Java / Groovy(NEW ) to write simple ring handlers for http services.
  3. Use Clojure / Java / Groovy(NEW ) to write a simple nginx rewrite handler to set var or return errors before proxy pass or content ring handler
  4. Non-blocking coroutine based socket which is Compatible with Java Socket API and works well with largely existing java library such as apache http client, mysql jdbc drivers. With this feature one java main thread can handle thousands of connections.
  5. Handle multiple sockets parallel in sub coroutines, e.g. we can invoke two remote services at the same time feature
  6. Asynchronous callback API of socket for some advanced usage
  7. Run initialization clojure code when nginx worker starting
  8. Support user defined http request method
  9. Compatible with the Nginx lastest stable version 1.6.0. (Nginx 1.4.x is also ok, older version is not tested and maybe works.)
  10. One of benifits of Nginx is worker processes are automatically restarted by a master process if they crash
  11. Utilizes lazy headers and direct memory operation between Nginx and JVM to fast handle dynamic contents from Clojure or Java code.
  12. Utilizes Nginx zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.
  13. Supports Linux x64, Linux x86 32bit, Win32 and Mac OS X. Win64 users can also run it with a 32bit JRE/JDK.

By the way it is very fast, the benchmarks can be found HERE .

  1. Installation =============

The lastest release is 0.2.4. Please check the Update History for more details.

1.1 Installation by Binary

  1. First you can download Release 0.2.4 from here. The zip file includes Nginx-Clojure binaries about Linux x64, Linux i586, Win32 and Mac OS X.
  2. Unzip the zip file downloaded then rename the file nginx-${os-arc} to nginx, eg. for linux is nginx-linux-x64

1.2 Installation by Source

Nginx-Clojure may be compiled successfully on Linux x64, Win32 and Mac OS X x64.

  1. First download from nginx site or check out nginx source by hg from http://hg.nginx.org/nginx. For Win32 users MUST check out nginx source by hg because the zipped source doesn't contain Win32 related code.

  2. Check out Nginx-Clojure source from github OR download the zipped source code from https://github.com/xfeep/nginx-clojure/releases

  3. If you want to use Http SSL module, you should install openssl and openssl dev first.

  4. Setting Java header include path in nginx-clojure/src/c/config

    #eg. on ubuntu
    JNI_HEADER_1="/usr/lib/jvm/java-7-oracle/include"
    JNI_HEADER_2="${JNI_HEADER_1}/linux"
  5. Add Nginx-Clojure module to Nginx configure command, here is a simplest example without more details about InstallOptions

    #If nginx source is checked out from hg, please replace ./configure with auto/configure
    $./configure \
    	--add-module=nginx-clojure/src/c
    $ make
    $ make install
  6. Create the jar file about Nginx-Clojure

    Please check the lein version lein version, it should be at least 2.0.0.

    $ cd nginx-clojure
    $ lein jar

    Then you'll find nginx-clojure-${version}.jar (eg. nginx-clojure-0.2.4.jar) in the target folder. The jar file is self contained. If your project use clojure it naturally depends on the clojure core jar, e.g clojure-1.5.1.jar. If your project use groovy it naturally depends on the groovy runtime jar, e.g. groovy-2.3.4.jar.

  7. Configurations =================

2.1 JVM Path , Class Path & Other JVM Options

Setting JVM path and class path within http { block in nginx.conf

    #for win32,  jvm_path maybe is "C:/Program Files/Java/jdk1.7.0_25/jre/bin/server/jvm.dll";
    #for macosx, jvm_path maybe is "/Library/Java/JavaVirtualMachines/1.6.0_65-b14-462.jdk/Contents/Libraries/libserver.dylib";
    #for ubuntu, jvm_path maybe is "/usr/lib/jvm/java-7-oracle/jre/lib/amd64/server/libjvm.so";
    #for centos, jvm_path maybe is "/usr/java/jdk1.6.0_45/jre/lib/amd64/server/libjvm.so";
    #for centos 32bit, jvm_path maybe is "/usr/java/jdk1.7.0_51/jre/lib/i386/server/libjvm.so";
    
    jvm_path "/usr/lib/jvm/java-7-oracle/jre/lib/amd64/server/libjvm.so";
    
    #jvm_options can be repeated once per option.
    #for clojure, you should append clojure core jar, e.g -Djava.class.path=jars/nginx-clojure-0.2.4.jar:mypath-xxx/clojure-1.5.1.jar,please  replace ':' with ';' on windows
    #for groovy, you should append groovy runtime jar, e.g. -Djava.class.path=jars/nginx-clojure-0.2.4.jar:mypath-xxx/groovy-2.3.4.jar, please replace ':' with ';' on windows
    jvm_options "-Djava.class.path=jars/nginx-clojure-0.2.4.jar";
    
    #jvm heap memory
    jvm_options "-Xms1024m";
    jvm_options "-Xmx1024m";
    
    #for enable java remote debug uncomment next two lines, make sure "master_process = off;" or "worker_processes = 1;"
    #jvm_options "-Xdebug";
    #jvm_options "-Xrunjdwp:server=y,transport=dt_socket,address=8400,suspend=n";

###Some Useful Tips

These tips are really useful. Most of them are from real users. Thanks Rickr Nook who give us some useful tips.

  1. When importing Swing We Must specifiy jvm_options "-Djava.awt.headless=true" , otherwise the nginx will hang.
  2. By adding the location of your clojure source files to the classpath,then just issue "nginx -s reload" and changes to the sources get picked up!
  3. You can remove clojure-1.5.1.jar from class path and point at your "lein uberjar" to pick up a different version of clojure.
  4. To use Java 7 on OSX, in nginx.conf your may set jvm_path "/Library/Java/JavaVirtualMachines/jdk1.7.0_55.jdk/Contents/Home/jre/lib/server/libjvm.dylib";

2.2 Initialization Handler for nginx worker

You can embed clojure/groovy code in the http { block to do initialization when nginx worker starting. e.g

http {
......
    handler_type 'clojure'; # or handler_type 'groovy'
    handler_code '....';  #the same with Ring Handler for Location (details in next section)
....
}

Or you can reference an exteranl clojure/java/groovy ring handler for initialization when nginx worker starting.

http {
......
    handler_type 'clojure'; # or handler_type 'java' / handler_type 'groovy'
    handler_name 'my.test/InitHandler';  # or for java it maybe 'my.test.MyJavaInitHandler'
....
}

The ring handler can use status 500 and body to report some errors or just return nothing. For more detail example of ring handler please see the next secion.

Please Keep these in your mind:

  • By default if the initialization failed the nginx won't start successfully and the worker will exit after reporting an error message in error log file but the master keep running and take the port.
  • Because the maybe more than one nginx worker processes, so this code will run everytime per worker starting.
  • If you use SharedHashMap to share data among nginx worker processes, Java file lock can be used to let only one nginx worker process do the initialization.
  • If you enabled coroutine support, nginx maybe will start successfully even if your initialization failed after some socket operations. If you case it, you can use nginx.clojure.core/without-coroutine to wrap your handler, e.g.

For clojure

	    handler_code '
	    (do
		    (use \'nginx.clojure.core)
		    (without-coroutine
		      (fn[ctx]
		        ....
		        )
		    ))
	    ';

2.3 Ring Handler for Location

Within location block,

  • Directive handler_type is used to setting a type of handler.
  • Directive handler_code is used to setting an inline Ring handler.
  • Directive handler_name is used to setting an external Ring handler which is in a certain jar file included by your classpath.

###2.3.1 Inline Ring Handler

For Clojure :

       location /clojure {
          handler_type 'clojure';
          handler_code ' 
						(fn[req]
						  {
						    :status 200,
						    :headers {"content-type" "text/plain"},
						    :body  "Hello Clojure & Nginx!" ;response body can be string, File or Array/Collection/Seq of them
						    })
          ';
       }

Now you can start nginx and access http://localhost:8080/clojure, if some error happens please check error.log file.

For Groovy :

       location /groovy {
          handler_type 'groovy';
          handler_code ' 
               import nginx.clojure.java.NginxJavaRingHandler;
               import java.util.Map;
               public class HelloGroovy implements NginxJavaRingHandler {
                  public Object[] invoke(Map<String, Object> request){
                     return [200, //http status 200
                             ["Content-Type":"text/html"], //headers map
                             "Hello, Groovy & Nginx!"]; //response body can be string, File or Array/Collection of them
                  }
               }
          ';
       }

Now you can start nginx and access http://localhost:8080/groovy, if some error happens please check error.log file.

###2.3.2 Reference of External Ring Handlers

Please make sure the external Ring handler is in a certain jar file or a directory included by your classpath. It is also OK if you do not compile the Clojure/Groovy to java class file and just put the source of them in a certain jar file or a directory included by your classpath.

For Clojure the exteranl Ring handler example is here

(ns my.hello)
(defn hello-world [request]
  {:status 200
   :headers {"Content-Type" "text/plain"}
   ;response body can be string, File or Array/Collection/Seq of them
   :body "Hello World"})

Then we can reference it in nginx.conf

       location /myClojure {
          handler_type 'clojure';
          handler_name 'my.hello/hello-world';
       }

For more details and more useful examples for Compojure which is a small routing library for Ring that allows web applications to be composed of small, independent parts. Please refer to https://github.com/weavejester/compojure

For Java

package mytest;
import static nginx.clojure.MiniConstants.*;

import java.util.HashMap;
import java.util.Map;
public  class Hello implements NginxJavaRingHandler {

		@Override
		public Object[] invoke(Map<String, Object> request) {
			return new Object[] { 
					NGX_HTTP_OK, //http status 200
					ArrayMap.create(CONTENT_TYPE, "text/plain"), //headers map
					"Hello, Java & Nginx!"  //response body can be string, File or Array/Collection of them
					};
		}
	}
       location /myJava {
          handler_type 'java';
          handler_name 'mytest.Hello';
       }

For Groovy

   package mytest;
   import nginx.clojure.java.NginxJavaRingHandler;
   import java.util.Map;
   public class HelloGroovy implements NginxJavaRingHandler {
      public Object[] invoke(Map<String, Object> request){
         return 
         [200,  //http status 200
          ["Content-Type":"text/html"],//headers map
          "Hello, Groovy & Nginx!" //response body can be string, File or Array/Collection of them
          ]; 
      }
   }

###2.3.3 Pure Java Handler

The section is deprecated. Please check the above section and use new derective handler_type and handler_name for easier work.

package my;

import nginx.clojure.Constants;
import clojure.lang.AFn;
import clojure.lang.IPersistentMap;
import clojure.lang.PersistentArrayMap;

public class HelloHandler extends AFn {
	
	@Override
	public Object invoke(Object r) {
		IPersistentMap req = (IPersistentMap)r;
		
		//get some info from req. eg. req.valAt(Constants.QUERY_STRING)
		//....
		
		//prepare resps, more details about Ring handler on this site https://github.com/ring-clojure/ring/blob/master/SPEC
		Object[] resps = new Object[] {Constants.STATUS, 200, 
				Constants.HEADERS, new PersistentArrayMap(new Object[]{Constants.CONTENT_TYPE.getName(),"text/plain"}),
				Constants.BODY, "Hello Java & Nginx!"};
		return new PersistentArrayMap(resps);
	}
	
}

In nginx.conf, eg.

	location /java {
          clojure;
          clojure_code ' 
               (do (import \'[my HelloHandler]) (HelloHandler.) )
          ';
       }

You should set your JAR files to class path, see 2.1 JVM Path , Class Path & Other JVM Options .

2.4 Chose Coroutine based Socket Or Asynchronous Socket Or Thread Pool for slow I/O operations

If the http service should do some slow I/O operations such as access external http service, database, etc. nginx worker will be blocked by those operations and the new user request even static file request will be blocked. It really sucks! Before v0.2.0 the only choice is using thread pool but now we have three choice :

  1. Coroutine based Socket
    • 😃It's Java Socket API Compatible and work well with largely existing java library such as apache http client, mysql jdbc drivers etc.
    • 😃It's non-blocking, cheap, fast and let one java main thread be able to handle thousands of connections.
    • 😃Your old code need not be changed and those plain and old java socket based code such as Apache Http Client, MySQL mysql jdbc drivers etc. will be on the fly with epoll/kqueue on Linux/BSD!
    • 😟You must do some steps to get the right class waving configuration file and set it in the nginx conf file.
  2. Asynchronous Socket
    • 😃It's the fastest among those three choice and you can controll it finely.
    • 😃It can work with default mode or Coroutine based Socket enabled mode but can't work with Thread Pool mode.
    • 😟Your old code must be changed to use the event driven pattern.
  3. Thread Pool
    • 😃It's a trade off choice and almost all Java server such as Jetty, Tomcat , Glassfish etc. use thread pool to handle http requests.
    • 😃Your old code need not be changed.
    • 😟The nginx worker will be blocked after all threads are exhuasted by slow I/O operations.
    • 😟Becase the max number of threads is alwarys more smaller than the total number of socket connections supported by Operation Systems and thread in java is costlier than coroutine, facing large amount of connections this choice isn't as good as Coroutine based choice.

2.4.1 Enable Coroutine based Socket

1. Get a User Defined Class Waving Configuration File for Your Web App

  • Turn on Run Tool Mode

     http {
     ...
     
     #To make sure generated Class Waving Configuration File won't be mixed by many workers. 
     worker_processes  1;
     
     #turn on run tool mode, t means Tool
     jvm_options "-javaagent:jars/nginx-clojure-0.2.4.jar=tmb";
     
     #for clojure, you should append clojure core jar, e.g -Djava.class.path=jars/nginx-clojure-0.2.4.jar:mypath-xxx/clojure-1.5.1.jar,please  replace ':' with ';' on windows
    jvm_options "-Xbootclasspath/a:jars/nginx-clojure-0.2.4.jar";
    ...
     }
  • Setting Output Path of Waving Configuration File

     #Optional The default value is $nginx-workdir/nginx.clojure.wave.CfgToolOutFile
     #Setting Output Path of Waving Configuration File, 
    jvm_options "-Dnginx.clojure.wave.CfgToolOutFile=/tmp/my-wave-cfg.txt";
  • Setting Dump Configuration Service

       location /dump {
          handler_type 'java';
          handler_name 'nginx.clojure.java.WaveConfigurationDumpHandler';       
       }
  • Start Nginx which Compiled with Nginx Clojure Module

  • Run curl or httpclient based junit tests to access your http services which directly or indirectly use Java Socket API, e.g Apache Http Client, MySQL JDBC Driver etc.

  • After All responses completed We'll get a generated class waving configuration file e.g my-wave-cfg.txt by access Dump Configuration Service.

     /*use curl or just put the Dump Service url to browser and click GO!
      *Dump Service will generate Waving Configuration File to the path defined by 
      *java system property `nginx.clojure.wave.CfgToolOutFile`
      */
     curl -v http://localhost:8080/dump

    Don't foget reset worker_processes and turn off run tool mode for product enviroument after get class waving configuration

2. Enable Coroutine Support

  • Turn on Coroutine Support

     http {
     ...
     #make sure it is reset to a normal number after  above step, e.g. 8 worker processes.
     worker_processes  8;
     		
     #turn on coroutine mode
     jvm_options "-javaagent:jars/nginx-clojure-0.2.4.jar=mb";
     
     #append nginx-clojure &  clojure runtime jars to jvm bootclasspath 		
     #for win32, class path seperator is ";", e.g "-Xbootclasspath/a:jars/nginx-clojure-0.2.4.jar;jars/clojure-1.5.1.jar"
     jvm_options "-Xbootclasspath/a:jars/nginx-clojure-0.2.4.jar:jars/clojure-1.5.1.jar";
     
     #coroutine-udfs is a directory to put your User Defined Class Waving Configuration File
     #for win32, class path seperator is ";", e.g "-Djava.class.path=coroutine-udfs;YOUR_CLASSPATH_HERE"
     #Note: DON NOT put nginx-clojure &  clojure runtime jars here, because they have been appened to the jvm bootclasspath
     jvm_options "-Djava.class.path=coroutine-udfs:YOUR_CLASSPATH_HERE";
     
     
     #copy the waving configuration file generated from previous step to you any classpath dir e.g. coroutine-udfs
     #setting user defined class waving configuration files which are in the above boot classpath, the seperator is "," 
     jvm_options "-Dnginx.clojure.wave.udfs=my-wave-cfg.txt";
     ...
     }
  • restart nginx or reload nginx

    Now every nginx worker can handle thousands of connections easily!

    Those plain and old java socket based code such as Apache Http Client, MySQL mysql jdbc drivers etc. will be on the fly with epoll/kqueue on Linux/BSD!

    Nginx won't blocked until nginx connections exhuasted or jvm OutOfMemory!

2.4.2 Use Asynchronous Socket

Asynchronous Socket Can be used with default mode or coroutined enabled mode without any additional settings. It just a set of API. It uses event driven pattern and works with a java callback handler or clojure function for callback. Please check the source code and examples for more details.

In future we'll give more clojure style wrapper and examples. Pull requests are also welcome!

2.4.3 Use Thread Pool

If your tasks are often blocked by slow I/O operations, the thread pool method can make the nginx worker not blocked until all threads are exhuasted. When facing large amount of connections this choice isn't as good as above coroutine based choice or asynchronous socket.

eg.

#turn off coroutine mode,  n means do nothing. You can also comment this line to turn off coroutine mode 
jvm_options "-javaagent:jars/nginx-clojure-0.2.4.jar=nmb";

jvm_workers 40;

Now Nginx-Clojure will create a thread pool with fixed 40 threads per JVM instance/Nginx worker to handle requests. If you get more memory, you can set a bigger number.

2.5 Nginx rewrite handler

A nginx rewrite handler can be used to set var or return errors before proxy pass or content ring handler. If the rewrite handler returns phrase-done (Clojure) or PHRASE_DONE (Groovy/Java), nginx will continue to invoke proxy_pass or content ring handler. If the rewrite handler returns a general response, nginx will send this response to the client and stop to continue to invoke proxy_pass or content ring handler.

2.5.1 Simple Example about Nginx rewrite handler

Here's a simple clojure example for Nginx rewrite handler :

       set $myvar "";
       
       location /rewritesimple {
          handler_type 'clojure';
          handler_rewrite_code '
           (do (use \'[nginx.clojure.core]) 
						(fn[req]
						  (set-ngx-var! req "myvar" "Hello")
						  phrase-done))
          ';
          handler_code '
           (do (use \'[nginx.clojure.core]) 
						(fn[req]
						  (set-ngx-var! req "myvar" 
						             (str (get-ngx-var req "myvar") "," "Xfeep!"))
						  {
						    :status 200,
						    :headers {"content-type" "text/plain"},
						    :body  (get-ngx-var req "myvar") 
						    }))
          ';
       }    

2.5.2 Simple Dynamic Balancer By Nginx rewrite handler

We can alos use this feature to complete a simple dynamic balancer , e.g.

       set $myhost "";
       
       location /myproxy {
          handler_type 'clojure';
          handler_rewrite_code '
           (do (use \'[nginx.clojure.core]) 
						(fn[req]
						  ;compute myhost (upstream name or real host name) based req & remote service, e.g.
						  (let [myhost (compute-myhost req)])
						  (set-ngx-var! req "myhost" myhost)
						  phrase-done))
          ';
          proxy_pass $myhost
       }    

The equivalent java code is here

package my.test;

import static nginx.clojure.java.Constants.*;
	
	public static class MyRewriteProxyPassHandler implements NginxJavaRingHandler {
		@Override
		public Object[] invoke(Map<String, Object> req) {
			String myhost = computeMyHost(req);
			NginxClojureRT.setNGXVariable(req.nativeRequest(), "myhost", myhost);
			return PHRASE_DONE;
		}
		
		private String computeMyHost(Map<String, Object> req) {
			//compute a upstream name or host name;
		}
	}

Then we set the java rewrtite handler in nginx.conf

       set $myhost "";
       
       location /myproxy {
          handler_type 'java';
          handler_rewrite_name 'my.test.MyRewriteProxyPassHandler';
          proxy_pass $myhost
       }    

2.5.3 Simple Access Controller By Nginx rewrite handler

For clojure

 handler_type 'clojure';
 handler_rewrite_code '
     (do (use \'[nginx.clojure.core]) 
           (import \'[com\.test AuthenticationHandler]) 
                (fn[req]
                          (if ((AuthenticationHandler.)  req)
                             ;AuthenticationHandler returns true so we go to proxy_pass
                             phrase-done 
                             ;else return 403
                             {:status 403}
                             )))
          ';
proxy_pass http://localhost:8084;

For Java

  • nginx.conf

     	handler_type 'java';
     	handler_rewrite_name 'com.test.MyHandler';
     	proxy_pass http://localhost:8084;
  • MyHandler.java

package com.test; import static nginx.clojure.java.Constants.*; public class MyHandler implements NginxJavaRingHandler {

	public Object[] invoke(Map<String,Object> req) {
	
	   /*do some computing here*/
	   
	    if (goto-proxy-pass) {
	           return  PHRASE_DONE;
	    }else {  //return 403
	          return Object[] resps = new Object[] {
	                          Constants.STATUS, 403, 
	                         //add some headers -- optional for no-20X response
	                         //Constants.HEADERS, nginx.clojure.java.ArrayMap.create(new Object[]{CONTENT_TYPE,"text/plain"}),
	                         //body text -- optional for no-20X response
	                         // Constants.BODY, "xxxxxxxxxxxxxx!"
	                         };
	    }
	}

```
  1. More about Nginx-Clojure =================

3.1 Handle Multiple Coroutine Based Sockets Parallel

Sometimes we need invoke serveral remote services before completing the ring response. For better performance we need a way to handle multiple sockets parallel in sub coroutines.

e.g. fetch two page parallel by clj-http

   (let [[r1, r2] 
                (co-pvalues (client/get "http://service1-url") 
                            (client/get "http://service2-url"))]
    ;println bodies of two remote response
    (println (str (:body r1) "====\n" (:body r2) ))

Here co-pvalues is also non-blocking and coroutine based. In fact it will create two sub coroutines to handle two sockets.

For Java/Groovy, we can use NginxClojureRT.coBatchCall to do the same thing. Here 's a simple example for Groovy.

     def (r1, r2) = NginxClojureRT.coBatchCall( 
       {"http://mirror.bit.edu.cn/apache/httpcomponents/httpclient/".toURL().text},
       {"http://mirror.bit.edu.cn/apache/httpcomponents/httpcore/".toURL().text})
     return [200, ["Content-Type":"text/html"], r1 + r2];

3.2 Shared Map among Nginx Workers

Generally use redis or memorycached is the better choice to implement a shared map among Nginx workers. We can do some initialization of the shared map by following the guide of 2.2 Initialization Handler for nginx worker. If you like shared map managed in nginx process better than redis or memcached, you can choose SharedHashMap
which is fast and based on Memory Mapped File so that it can store large amout of records and won't need too much java heap memory.

3.3 User Defined Http Method

Some web services need user defined http request method to define special operations beyond standard http request methods.

e.g. We use MYUPLOAD to upload a file and overwrite the one if it exists. The curl command maybe is

curl   -v  -X MYUPLOAD  --upload-file post-test-data \
"http://localhost:8080/myservice" 

In the nginx.conf, we can use always_read_body on; to force nginx to read http body.

location /myservice {
         handler_type 'clojure';
         always_read_body on;
         handler_code '....';
}
  1. Useful Links =================
  1. License ================= Copyright © 2013-2014 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.

This program uses:

  • Re-rooted ASM bytecode engineering library which is distributed under the BSD 3-Clause license
  • Modified Continuations Library Written by Matthias Mann is distributed under the BSD 3-Clause license

nginx-clojure's People

Contributors

xfeep avatar jstokes avatar

Watchers

James Cloos avatar CHNYE avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.