
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@forgerock/javascript-sdk-ui
Advanced tools
ForgeRock JavaScript SDK with UI rendering capability
Change Log · Support · Docs
The ForgeRock JavaScript SDK with UI contains the Core SDK and adds UI rendering capability. This project greatly reduces the effort to quickly prototype and demonstrate the use of the Core SDK in a more real-word scenario.
ForgeRock Identity Platform
Browsers:
fast-text-encoding
is recommendedTip: Older browsers (like IE11) may require multiple polyfills, which can be found in our documentation.
npm install @forgerock/javascript-sdk-ui
To try out the ForgeRock JavaScript SDK UI, perform these steps:
Setup CORS support in an Access Management (AM) instance.
See Enabling CORS Support in the Documentation.
Create an authentication tree in AM.
See Creating a User Authentication Tree in the Documentation.
Clone this repo:
git clone https://github.com/ForgeRock/forgerock-javascript-sdk-ui.git
In the root folder of the repo, use NPM to install dependencies:
npm install
Build the ForgeRock JavaScript SDK:
npm run build
Open samples/basic/index.html
and edit the configuration values to match your AM instance.
This SDK requires HTTPS (secure protocol) which means security (SSL/TLS) certificates are necessary. For local testing and development, it's common to generate your own self-signed certificates. You're free to use any method to do this, but if you need assistance in generating your own certs, the following can be helpful:
Using this utility (mkcert
) can help simplify the process of creating trusted certs
After following mkcert
's installation guide and simple example of creating certs, you should have two files: example.com+5.pem
& example.com+5-key.pem
(Ensure these two files are in the root of this project)
Warning: Self-signed certificates or certificates not from an industry-recognized, certificate authority (CA) should never be used in production.
Serve the samples
directory by using a simple HTTP server.
If you used the mkcert
utility from above, followed their tutorial, and the files are in the root of this project, simply run npm run start:samples
Or, if you generated certs using a different method, you will need to run the below with your certificate and key file names you created:
http-server samples -c1 -p 8443 --ssl --cert <your_certificate> --key <your_private_key>
Edit your /etc/hosts
file to point your localhost (e.g. 127.0.0.1
) to sdkapp.example.com
In a supported web browser, navigate to https://sdkapp.example.com:8443
, and then click
Custom UI.
Documentation for the SDKs is provided at https://sdks.forgerock.com, and includes topics such as:
The two key concepts in the SDK are Step Handlers and Callback Renderers. Step handlers control how a given step in an authentication tree is handled, and callback renderers control how each callback in that step is rendered.
For example, a single authentication tree might use a Choice Collector in different ways:
In the first scenario, simple yes/no buttons aligned horizontally may suffice. But you might want to render a vertical list with custom icons for each option in the second scenario. You could create custom step handlers to invoke the correct custom callback renderer (buttons vs list).
This SDK includes two UI step handlers: Basic and Express.
This is the default UI and can be used with any OpenAM installation version 6.5.2 or greater. It can render all of the supported callbacks with generic styling based on Bootstrap 4. You can optionally add your own CSS to customize or brand the user experience.
The out-of-box integration is extremely simple:
const frui = new forgerock.FRUI();
const result = await frui.getSession();
If you need deeper customization, you can override built-in behavior at both the step and callback levels by providing factory functions.
The following example overrides the rendering of the callback produced by the "Platform Username" tree node:
// Define a factory that returns the custom callback renderer
const myRendererFactory = (cb, index, step, onChange) => {
if (cb.getType() === 'ValidatedCreateUsernameCallback') {
return {
render: () => {
// Render the custom UI here
const div = document.createElement('div');
div.innerHTML = 'This is a custom UI for capturing username';
return div;
},
};
}
// Return `undefined` to defer to the SDK for other callback types
return undefined;
};
// Define a factory that returns the step handler
const myHandlerFactory = (target, step) => {
return new forgerock.BasicStepHandler(target, step, myRendererFactory);
};
// Use the step handler factory when instantiating FRUI
const frui = new forgerock.FRUI({ handlerFactory: myHandlerFactory });
const result = await frui.getSession();
If you encounter any issues, be sure to check our Troubleshooting pages.
Support tickets can be raised whenever you need our assistance; here are some examples of when it is appropriate to open a ticket (but not limited to):
You can raise a ticket using BackStage, our customer support portal that provides one stop access to ForgeRock services.
BackStage shows all currently open support tickets and allows you to raise a new one by clicking New Ticket.
Our version history can be viewed by visiting our CHANGELOG.md.
If you would like to contribute to this project you can fork the repository, clone it to your machine and get started.
Be sure to check out our Coding Style and Guidelines page.
This code is provided by ForgeRock on an “as is” basis, without warranty of any kind, to the fullest extent permitted by law. ForgeRock does not represent or warrant or make any guarantee regarding the use of this code or the accuracy, timeliness or completeness of any data or information relating to this code, and ForgeRock hereby disclaims all warranties whether express, or implied or statutory, including without limitation the implied warranties of merchantability, fitness for a particular purpose, and any warranty of non-infringement. ForgeRock shall not have any liability arising out of or related to any use, implementation or configuration of this code, including but not limited to use for any commercial purpose. Any action or suit relating to the use of the code may be brought only in the courts of a jurisdiction wherein ForgeRock resides or in which ForgeRock conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions.
This project is licensed under the MIT License - see the LICENSE file for details
© Copyright 2020 ForgeRock AS. All Rights Reserved.
[3.0.0] - 2021-06-24
nonce
from export as it was removed from Core SDKFAQs
ForgeRock JavaScript SDK with UI rendering capability
The npm package @forgerock/javascript-sdk-ui receives a total of 1 weekly downloads. As such, @forgerock/javascript-sdk-ui popularity was classified as not popular.
We found that @forgerock/javascript-sdk-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.