Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
Step 0: starting a new node project and script
Browse files Browse the repository at this point in the history
  • Loading branch information
colbyfayock committed Oct 25, 2021
0 parents commit d22176f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
11 changes: 11 additions & 0 deletions package.json
@@ -0,0 +1,11 @@
{
"name": "my-daily-report",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Colby Fayock <hello@colbyfayock.com>",
"license": "MIT"
}
3 changes: 3 additions & 0 deletions src/main.js
@@ -0,0 +1,3 @@
(async function run() {
console.log('Running report...');
})();

0 comments on commit d22176f

Please sign in to comment.