Skip to content

Commit 9a2f001

Browse files
authored
Minor fix for wording, sample code style and dependency (#3)
1 parent 047318f commit 9a2f001

File tree

5 files changed

+6
-41
lines changed

5 files changed

+6
-41
lines changed

AUTHORS

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ For example:
2424
$ yo azure-iot-edge-module -n filterModule -r localhost:5000/filtermodule
2525
```
2626

27-
## Build, deploy and run the module
27+
## Documentation
2828

29-
Check out the [document](https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-nodejs-module).
30-
31-
Learn more about Azure IoT Edge [here](https://docs.microsoft.com/en-us/azure/iot-edge/).
29+
* [Develop and deploy a Node.js IoT Edge module to your simulated device](https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-node-module)
30+
* [Use Visual Studio Code to debug a Node.js module with Azure IoT Edge](https://docs.microsoft.com/en-us/azure/iot-edge/how-to-vscode-debug-node-module)
31+
* [Azure IoT Edge](https://docs.microsoft.com/en-us/azure/iot-edge/)
3232

3333
## Contributing
3434

app/templates/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var connectionString = process.env.EdgeHubConnectionString;
99
var caCertFile = process.env.EdgeModuleCACertificateFile;
1010

1111
var client = Client.fromConnectionString(connectionString, Transport);
12-
console.log("Connection String: " + connectionString);
12+
console.log('Connection String: ' + connectionString);
1313

1414
client.on('error', function (err) {
1515
console.error(err.message);
@@ -39,7 +39,7 @@ client.setOptions({
3939

4040
// This function just pipes the messages without any change.
4141
function pipeMessage(inputName, msg) {
42-
client.complete(msg, printResultFor('Receiving message:'));
42+
client.complete(msg, printResultFor('Receiving message'));
4343

4444
if (inputName === 'input1') {
4545
var message = msg.getBytes().toString('utf8');

package-lock.json

Lines changed: 0 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
},
2727
"devDependencies": {
2828
"mocha": "^3.5.0",
29-
"path": "^0.12.7",
3029
"yeoman-assert": "^3.0.0",
3130
"yeoman-test": "^1.7.0"
3231
}

0 commit comments

Comments
 (0)