Last active
January 2, 2019 02:42
-
-
Save overra/0934ab740b476aa7f0c028621a18a6c6 to your computer and use it in GitHub Desktop.
Revisions
-
overra revised this gist
Jan 2, 2019 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,2 @@ const { send } = require('micro') module.exports = (req, res) => send(res, 200, 'hello world!') -
overra created this gist
Dec 31, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ const { send } = require('micro') module.exports = (req, res) => { send(res, 200, 'hello world!') } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ { "version": 2, "builds": [{"src": "index.js", "use" : "@now/node"}], "routes": [{"src": "/", "dest": "index.js"}] }
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ { "dependencies": { "micro": "latest" } }