Skip to content

Commit

Permalink
Initial 'Hello World' (Node)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrieseberg committed Aug 31, 2017
0 parents commit 1766093
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Created by https://www.gitignore.io

### Node ###
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
test-report.xml

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
.tmp
src/csx/*.dll

# Dependency directory
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules*

# Users Environment Variables
.lock-wscript

# Intellij
.idea
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "introducing-electron-editor",
"version": "1.0.0",
"description": "",
"main": "src/main/index.js",
"scripts": {
"start": "node ."
},
"keywords": [],
"author": "Felix Rieseberg <[email protected]>",
"license": "ISC"
}
Empty file added src/main/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions src/main/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Hello World!')
Empty file added src/renderer/.gitkeep
Empty file.

0 comments on commit 1766093

Please sign in to comment.