From ee65374c7811a0356e1f4349a7eadc03fa04eb5b Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Fri, 13 Mar 2020 21:47:14 +0100 Subject: [PATCH] Init --- index.js | 3 +++ package.json | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 index.js create mode 100644 package.json diff --git a/index.js b/index.js new file mode 100644 index 0000000..f002673 --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ + +const WIDTH = process.stdout.columns +const HEIGHT = process.stdout.rows; \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..b102ea0 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "console", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "node ." + }, + "keywords": [], + "author": "", + "license": "ISC" +}