Hi
I want to tell you about my new idea of a new javascript and node.js
framework.
I know that there is many frameworks for javascript like jQuery and
frameworks for node.js (express). And I think they are very good and
I'm not here to try to replace them.
The idea of node.in.js is to allow easy communication between client
side and server side, and easy object and function sharing between
javascript in the browser and javascript in the node to easily create
interactive webapp. What people are doing right now is using ajax to
communicate and this is take a lot of time. With node.in.js they will
be able to directly call a node function from the browser and all the
ajax work will be done for them

The main features of this new framework will be

*automatic functions sharing between both server-side and client-side
*automatic and easy ajax use
*possibility to write node code in javascript client code like this
<html>
<script language="javascript">
  node.in.js(function(var1,var2){
   //this code will be executed in the server
   return var1+var2;
},function(result){
   //this code will be executed in the browser when we
   //in this case result=va1+va2
   alert(result);
})
</script>

*double time type checking: for example, we will provide a class
SecurityEmail and if an object of this class is declared in client
side (email= new SecurityEmail("[email protected]");) and then this
object is sent to a function in the sever, before  the function in the
server would be executed, the object type is checked and in the case
of error, we execute a method in the server side(this method could be
defined by he developer) in and do not execute
*focusing on security security
Please tell me what do you think about this project, all comments or
suggestions will be appreciated
And if you want to participate in the project, tell me and don't be
shy.

-- 
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" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to