Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Masonite | 1,997 | 47 | 28 | 6 months ago | 309 | June 26, 2022 | 40 | mit | Python | |
The Modern And Developer Centric Python Web Framework. Be sure to read the documentation and join the Discord channel for questions: https://discord.gg/TwKeFahmPZ | ||||||||||
Bottle Ssl | 55 | 22 days ago | mit | Python | ||||||
A simple web page using BottlePy and SSL | ||||||||||
Moonmint | 30 | 4 years ago | other | Lua | ||||||
A Web Framework for Lua | ||||||||||
Ltrainnotwork | 14 | 12 years ago | JavaScript | |||||||
Mobile web framework for serving content on the New York L Train |
This framework was used to serve curated content to mobile devices on the New York City subway.
More info can be found on our press release, at Wired, or in this video.
Read the technical documentation including hardware configuration and specs.
Take this model and deploy your very own notwork!
node
(supported version 0.4.12) and npm
(link)npm install socket.io express yamlparser mysql-pool sprintf dateformat now underscore mysql jade
node app.js
http://localhost:3000
Copy and paste this into config.yaml in your code directory.
# file: config.yaml
# mysql credentials
mysqlUser: user
mysqlPass: pass
# added to mysql entries to easily combine multiple hardware tables
hardwareId: mycomputer
# use a basic access authentication
authentication: false
authUser: user
authPass: password
# node.js webserver port
port: 3000
# node.js route used in app.js
mode: development
Run using ./scripts/launch
from the command line.
Error: Cannot find module 'node-proxy'
at Function._resolveFilename (module.js:326:11)
at Function._load (module.js:271:25)
at require (module.js:355:19)
at Object.<anonymous> (/Users/boxysean/Documents/workspace/notwork/node_modules/now/lib/proxy.js:10:13)
at Module._compile (module.js:411:26)
at Object..js (module.js:417:10)
at Module.load (module.js:343:31)
at Function._load (module.js:302:12)
at require (module.js:355:19)
at Object.<anonymous> (/Users/boxysean/Documents/workspace/notwork/node_modules/now/lib/group.js:3:13)
A: Run make
.
npm ERR! [email protected] install: `make`
npm ERR! `sh "-c" "make"` failed with 2
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is most likely a problem with the node-proxy package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! make
npm ERR! You can get their info via:
npm ERR! npm owner ls node-proxy
npm ERR! There is likely additional logging output above.
npm ERR!
npm ERR! System Linux 3.0.0-13-generic
npm ERR! command "node" "/usr/bin/npm" "install" "now"
npm ERR! cwd /mnt/br/boxysean/workspace/notwork_github
npm ERR! node -v v0.4.12
npm ERR! npm -v 1.0.94
npm ERR! code ELIFECYCLE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /mnt/br/boxysean/workspace/notwork_github/npm-debug.log
npm not ok
A: This is probably because you are missing node-waf. More...
A: Install openssl libraries by doing sudo apt-get install libssl-dev
in Debian (Ubuntu) or through Ports in OS X.