me@helium 8 år sedan
förälder
incheckning
c6587fb14b
4 ändrade filer med 47 tillägg och 0 borttagningar
  1. 5 0
      README.md
  2. 12 0
      index.js
  3. 18 0
      package.json
  4. 12 0
      static/index.html

+ 5 - 0
README.md

@@ -0,0 +1,5 @@
+# NanoBind
+
+idea:
+
+DOM <-> JS (on proxies) <-> AJAX <-> Node.js two-way dataflow

+ 12 - 0
index.js

@@ -0,0 +1,12 @@
+var express = require('express')
+var app = express()
+var port = 10011;
+app.use(express.static('static'))
+
+app.post('/', function (req, res) {
+    res.send('Hello World!')
+})
+
+app.listen(port, function () {
+    console.log('Example app listening on ' + port + '!')
+})

+ 18 - 0
package.json

@@ -0,0 +1,18 @@
+{
+  "name": "nanobind",
+  "version": "1.0.0",
+  "description": "DOM <-> JS <-> Node.js dataflow",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git@gitlab.a-level.com.ua:gitgod/nanobind.git"
+  },
+  "author": "Ivan Grynkin",
+  "license": "ISC",
+  "dependencies": {
+    "express": "^4.14.0"
+  }
+}

+ 12 - 0
static/index.html

@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta name="viewport" content="width=device-width">
+        <title>repl.it</title>
+        <link href="index.css" rel="stylesheet" type="text/css" />
+    </head>
+    <body>
+        <script src="index.js"></script>
+    </body>
+</html>