chadgit / full-stack-react

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basic CRUD App with Node + React

This example app shows how to create a Node.js API and display its data with a React UI.

This project was bootstrapped with Create React App.

Prerequisites: Node.js, Yarn, and SQLite.

Getting Started

To install this example application, run the following commands:

git clone git@github.com:oktadeveloper/okta-react-node-example.git
cd okta-react-node-example
yarn

This will get a copy of the project install locally. You will need to set up some environment variables before the app will run properly.

To integrate Okta's Identity Platform for user authentication, you'll first need to:

You will need to create an application in Okta:

  • Log in to your Okta account, then navigate to Applications and click the Add Application button
  • Select Single-Page App and click Next
  • Give your application a name (e.g. "My React App")
  • Change the Base URI to http://localhost:3000/ and the Login redirect URI to http://localhost:3000/implicit/callback, then click Done
  • Save your Client ID for later

Your Okta application should have settings similar to the following:

Okta Application Settings

Now create a file called .env.local in the project root and add the following variables, replacing the values with your own from the previous steps.

.env.local

REACT_APP_OKTA_CLIENT_ID=0oalccuta0fx2kHFl356
REACT_APP_OKTA_ORG_URL=https://{yourOktaOrgUrl}

Now you can run both the Node API server and the React frontend with the same command:

yarn start

Links

This example uses the following libraries provided by Okta:

Help

Please raise an issue if you find a problem with the example application, or visit our Okta Developer Forums. You can also email developers@okta.com if would like to create a support ticket.

License

Apache 2.0, see LICENSE.

About

License:Apache License 2.0


Languages

Language:JavaScript 90.7%Language:HTML 9.3%