From e73c21aa4d01c31d0b3a59d7d01ab873b12198c8 Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Mon, 11 Oct 2021 09:38:46 +0300 Subject: [PATCH 1/2] chore: update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 94b3e31..f28d61e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# @sasjs/server +# SASjsServer ## Configuration -In order to configure `@sasjs/server`, add the following information to the `configuration` section of `package.json`: +In order to configure `SASjsServer`, add the following information to the `configuration` section of `package.json`: - Provide path to SAS9 executable. -- Provide `@sasjs/server` desired port. +- Provide `SASjsServer` desired port. From b3342f00031d19080fb72e3460f023c5f44bac95 Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Mon, 11 Oct 2021 10:52:41 +0000 Subject: [PATCH 2/2] fix: readme overview| --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f28d61e..213ec77 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,16 @@ -# SASjsServer +# SASjs Server + +SASjs Server provides a NodeJS wrapper for calling the SAS binary executable. It can be installed on an actual SAS server, or it could even run locally on your desktop. It provides the following functionality: + +* Virtual filesystem for storing SAS programs and other content +* Ability to execute Stored Programs from a URL +* Ability to create web apps using simple Desktop SAS + +One major benefit of using SASjs Server (alongside other components of the SASjs framework such as the [CLI](https://cli.sasjs.io), [Adapter](https://adapter.sasjs.io) and [Core](https://core.sasjs.io) library) is that the projects you create can be very easily ported to SAS 9 (Stored Process server) or Viya (Job Execution server). ## Configuration -In order to configure `SASjsServer`, add the following information to the `configuration` section of `package.json`: +Configuration is made in the `configuration` section of `package.json`: - Provide path to SAS9 executable. -- Provide `SASjsServer` desired port. +- Provide `SASjsServer` hostname and port (eg `localhost:5000`).