Skip to content

Commit 0674b5c

Browse files
committed
Basic stuff
1 parent 49d0630 commit 0674b5c

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# dependencies
2+
node_modules
3+
4+
# logs
5+
npm-debug.log

index.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Packages
2+
const { send } = require('micro')
3+
4+
module.exports = (req, res) => {
5+
send(res, 200, 'test')
6+
}

LICENSE license.md

File renamed without changes.

readme.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# electron-updates
2+
3+
Lighweight update server for Electron apps published with GitHub Releases

0 commit comments

Comments
 (0)