From 75d171f5be9f88ed5f3e612d18482d0aec825593 Mon Sep 17 00:00:00 2001 From: Nicolas Carlier Date: Tue, 28 Jan 2020 20:03:13 +0000 Subject: [PATCH] chore(): add Node.js script example --- scripts/examples/node.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 scripts/examples/node.sh diff --git a/scripts/examples/node.sh b/scripts/examples/node.sh new file mode 100755 index 0000000..caf0f3f --- /dev/null +++ b/scripts/examples/node.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env node + +console.log("hello world!")