Skip to content

Commit b621fe6

Browse files
committed
incorporate feedback
1 parent 8c0b203 commit b621fe6

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

_source/_posts/2023-07-27-enterprise-ready-getting-started.md

+8-10
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,21 @@ This application uses [React](https://react.dev/) for the frontend application a
4040

4141
Do you want to see your framework of choice in a workshop? Let us know your preferred tech stack for an enterprise-ready SaaS application in the comments below!
4242

43-
## Install Node.js and required tools
43+
## Install required tools
4444

45-
Each tech stack has the required tooling to install on your machine. Depending on the specific workshop you're participating in, you may need some knowledge of JavaScript, REST concepts, and command line operations in addition to the installed tools.
46-
47-
Next, you'll install the required tools, get a local copy of the project, and walk through the commands to start and stop the application.
48-
49-
There's a [companion video for this post](https://youtu.be/FCSNMtLtwRg) that shows the installation process and running the application.
45+
Each tech stack has the required tooling to install on your machine. While knowledge of JavaScript, REST concepts, and command line operations are helpful, we provided a [companion video](https://youtu.be/FCSNMtLtwRg) to walk you through the installation process and running the application.
5046

5147
{% youtube FCSNMtLtwRg %}
5248

53-
### Install Node, npm, and npx
49+
### Install Node.js
5450

55-
You'll need [Node.js](https://nodejs.org/en) v18+. When you install Node.js, you'll automatically get npm, a command line tool to install, update, and manage dependencies. npm includes a command called npx, allowing you to run a npm package without installing it locally.
51+
You'll need [Node.js](https://nodejs.org/en) v18 or higher. When you install Node.js, you'll automatically get npm, a command line tool to install, update, and manage dependencies. npm includes a command called npx, allowing you to run a npm package without installing it locally.
5652

5753
The application was built using Node v18.14.0, npm v9.3.1.
5854

5955
### Git and GitHub (optional)
6056

61-
You can find the source code for the project on [GitHub](https://github.com/). If you want to use source control for your work as you participate in the workshops, you may want to use [Git](https://git-scm.com/) and create a GitHub account. If you do not want to use Git, you can also download the source code from GitHub as a zip file.
57+
You can find the source code for the project in the [okta-enterprise-ready-workshops](https://github.com/oktadev/okta-enterprise-ready-workshops) GitHub repository. If you want to use source control for your work as you participate in the workshops, you may want to use [Git](https://git-scm.com/) and create a [GitHub](https://github.com) account. If you do not want to use Git, you can also download the source code from the GitHub repository [as a zip file](https://github.com/oktadev/okta-enterprise-ready-workshops/archive/refs/heads/main.zip).
6258

6359
### Code editor/Integrated development environment (IDE)
6460

@@ -93,7 +89,7 @@ npm run init-db
9389

9490
Before you voice concerns about writing the passwords to the console and storing the passwords in plaintext in the database, don't fear! One of the upcoming workshops replaces the username/password local database password store scheme with an enterprise-ready authentication mechanism!
9591

96-
## Inspect the React and Express Nx TypeScript project
92+
## Inspect the React and Express project
9793

9894
Open the project in your IDE. First, you'll see the README. The README has the npm commands we'll cover next in a quick reference format.
9995

@@ -117,6 +113,8 @@ You will sign in using the email and password of one of the two users, which wil
117113

118114
{% img blog/enterprise-ready-getting-started/todolist.jpg alt:"Screenshot of todo list" %}{: .center-image }
119115

116+
This is a bare-bones implementation of a todo application, so you won't have the user experience niceties like error notifications for entering email and passwords incorrectly.
117+
120118
Stop serving the application by entering `Ctrl+c` in the terminal.
121119

122120
### Call the Express API endpoints directly

0 commit comments

Comments
 (0)