-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add helpful information to template files
- Loading branch information
Alex Van Camp
committed
Jul 11, 2018
1 parent
037961d
commit 0d9af8f
Showing
3 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
'use strict'; | ||
|
||
module.exports = function (nodecg) { | ||
|
||
nodecg.log.info('Hello, from your bundle\'s extension!'); | ||
nodecg.log.info('I\'m where you put all your server-side code.'); | ||
nodecg.log.info(`To edit me, open "${__filename}" in your favorite text editor or IDE.`); | ||
nodecg.log.info('You can use any libraries, frameworks, and tools you want. There are no limits.'); | ||
nodecg.log.info('Visit https://nodecg.com for full documentation.'); | ||
nodecg.log.info('Good luck!'); | ||
}; |
This file contains 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 characters
This file contains 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 characters