This file contains hidden or 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
// Node v6.9.0 | |
// | |
// TEST FILE (cut down for simplicity) | |
// To ensure Golang encrypted string can be decrypted in NodeJS. | |
// | |
let crypto; | |
try { | |
crypto = require('crypto'); |
This file contains hidden or 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
#!/bin/sh | |
# This script prepare AwaLWM2M tools and start AWALWM2M client, which connects to CreatorDev Device Server. | |
# Client is already configured for Prj5_HeatingController project. | |
# PREREQUISITES: | |
# Go to https://docs.creatordev.io/ci40/guides/creating-applications/#method-2-creatordev-vm and install virtualbox, virtualbox extension pack and vagrant. Then: | |
# $ mkdir creatordev-sdk | |
# $ cd creatordev-sdk | |
# $ vagrant init CreatorDev/creatordev-vm | |
# $ vagrant up |