From ad875f9647c2628d919303665eb57247bd7ed79e Mon Sep 17 00:00:00 2001 From: Sergey Pimenov Date: Mon, 12 Jul 2021 10:11:28 +0300 Subject: [PATCH] upd readme --- .browserslistrc | 5 ----- README.RU.md | 23 +++++++++++++---------- README.UA.md | 24 ++++++++++++++---------- README.md | 25 ++++++++++++++----------- package.json | 11 ++++++++--- 5 files changed, 49 insertions(+), 39 deletions(-) delete mode 100644 .browserslistrc diff --git a/.browserslistrc b/.browserslistrc deleted file mode 100644 index 0742524..0000000 --- a/.browserslistrc +++ /dev/null @@ -1,5 +0,0 @@ -defaults -last 2 versions -not ie <= 12 -not ie_mob <= 12 -maintained node versions diff --git a/README.RU.md b/README.RU.md index ff1fca0..8447073 100644 --- a/README.RU.md +++ b/README.RU.md @@ -246,28 +246,31 @@ These rules are controlled by parameters `memAlert` and `memRestart`. Для сборки клиентского приложения выполните команду, указанную ниже: -**Для Windows** ```shell npm run build ``` -**Для Linux** -```shell -npm run build_x -``` - Теперь папка `dist` содержит скомпилированные файлы клиента. Скопируйте указанные файлы на ваш web server. -Если у вас нет web сервера, вы можете запустить клиента в локальном окружении. Для этого выполните команду: +### Running client and server locally + +#### Client -**Для Windows** ```shell npm run serve ``` +or +```shell +npm start +``` +or +```shell +npm run client +``` -**Для Linux** +#### Server ```shell -npm run serve_x +npm run server ``` ### Установка сервера diff --git a/README.UA.md b/README.UA.md index 37478cc..e04f0ef 100644 --- a/README.UA.md +++ b/README.UA.md @@ -249,27 +249,31 @@ These rules are controlled by parameters `memAlert` and `memRestart`. Для складання клієнтської програми виконайте команду, вказану нижче: -**Для Windows** ```shell npm run build ``` -**Для Linux** -```shell -npm run build_x -``` - Тепер папка `dist` містить скомпільовані файли клієнта. Скопіюйте зазначені файли на ваш web server. -Якщо у вас немає web сервера, ви можете запустити клієнта в локальному оточенні. Для цього виконайте команду: -**Для Windows** +### Running client and server locally + +#### Client + ```shell npm run serve ``` +or +```shell +npm start +``` +or +```shell +npm run client +``` -**Для Linux** +#### Server ```shell -npm run serve_x +npm run server ``` ### Установка сервера diff --git a/README.md b/README.md index 449edde..788751a 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ git clone https://github.com/olton/mina-node-monitor.git #### Install required packages ```shell -npm i +npm install ``` The Monitor consists of two parts: @@ -239,28 +239,31 @@ These rules are controlled by parameters `memAlert` and `memRestart`. ### Build web client To build client use command: -**for Windows** ```shell npm run build ``` -**for Linux** -```shell -npm run build_x -``` - Now folder `dist` contains a compiled client files. Copy these to your web server. -If you don't have a web server, you can run the client in your local environment. To do this, run the command: +### Running client and server locally + +#### Client -**For Windows** ```shell npm run serve ``` +or +```shell +npm start +``` +or +```shell +npm run client +``` -**For Linux** +#### Server ```shell -npm run serve_x +npm run server ``` ### Install server app diff --git a/package.json b/package.json index 595c8ac..2adf224 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,7 @@ "build": "parcel build --out-dir dist --public-url . --no-source-maps client/index.html", "start": "npm run serve", "client": "npm run serve", - "server": "node --trace-warnings server\\monitor.mjs", - "server_x": "node --trace-warnings server/monitor.mjs" + "server": "node --trace-warnings server/monitor.mjs" }, "devDependencies": { "less": "^4.1.1", @@ -26,5 +25,11 @@ "staticPath": [ "client/config.json" ] - } + }, + "browserslist": [ + "last 2 Chrome versions", + "last 2 Firefox versions", + "last 2 Opera versions", + "last 2 Edge versions" + ] }