Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@icanbwell/composite
Advanced tools
Composite embeddable bwell component. The composite can be embedded in either a web or React Native context.
The composite web component can be integrated via either script tag or npm module.
If using the script tag, you'll need to add the below to your web page. This will pull in the required scripts and define the bwell composite web component.
<script src="https://embeddables.prod.icanbwell.com/composite/<VERSION_NUMBER>/loader/index.js"></script>
Alternatively, if you use NPM, the bwell composite can be added to your project with the following command.
npm install @icanbwell/composite@<VERSION_NUMBER>
Once that's done, make sure to do a direct import of the module somewhere within your appliction.
import '@icanbwell/composite';
In both cases above, replace <VERSION_NUMBER>
with the desired version number.
The composite can then be integrated into your web UI as a traditional HTML tag.
<bwell-composite />
The embeddable is initialized in two steps:
<CLIENT_KEY>
in the code
below). Think of this as a public SDK/API key.<USER_TOKEN>
in the code
below).async function onInit() {
await bwell.init(<CLIENT_KEY>)
const userInfo = await bwell.setUserToken(<USER_TOKEN>)
}
The bwell composite introduces a global bwell
object off of the window
. Via
this global object, events can be subscribed and unsubscribed. One of these
events is pagetransition
and can be used to update your web application's
document title to best reflect the current screen being shown within the
embeddable. An example of such an approach can be seen below.
bwell.on(
'pagetransition',
(pageInfo) => (document.title = pageInfo.pageTitle || ''),
);
The bwell composite also supports integration into React Native via a react
native scoped export. Before integrating, installation requires adding some peer
dependencies of the @icanbwell/composite
module.
Install module plus peer dependencies (only required they are not already installed).
npm install \
react \
react-native \
react-native-webview \
@react-native-async-storage/async-storage
The following native dependencies are optional and may be required dependent on the features that are enabled for your specific client.
npm install \
react-native-biometrics \
react-native-permissions \
@react-native-camera-roll/camera-roll \
@react-native-camera-roll/camera-roll \
react-native-document-picker \
@react-native-community/geolocation \
react-native-print
npx pod-install
// Native Module(s) to inject
import storage from '@react-native-async-storage/async-storage';
import { SafeAreaView } from 'react-native';
import { Composite } from '@icanbwell/composite/native';
export default function App() {
return (
<SafeAreaView style={{ flex: 1 }}>
<Composite
clientKey='<CLIENT_KEY>'
userToken='<USER_TOKEN>'
nativeModules={{
storage,
}}
/>
</SafeAreaView>
);
}
clientKey
required
type: string
Client key.
userToken
required
type: string
User token for SSO.
initialPath
(deprecated; prefer path
below)type: string
Optional property that tells the composite what page to start on. Use this to deeplink into the embeddable application.
path
type:
type Path = {
value: string;
onResetValue: () => void;
};
Optional property that tells the composite what page to initially render. Use
this to have the Composite
render a specific screen. Pass the intended path in
via the value
property (for example value: '/intended/path'
). Use the
onResetValue
callback to clear the value that is passed to path
(set it to
an empty string/undefined
). onResetValue
is called immediately after the
passed in path value
is rendered within the Composite
component. This is
required in order to accommodate passing in the same path value
sequentially
and having the underlying component recognize there's been a change. It is
possible the user navigates elsewhere in between sequential path value
updates. NOTE: Make sure to omit the hash segment of a path if it exists. For
example: #/intended/path
would be /intended/path
.
onEvent
type:
type OnAuthSuccessEventData = {
user: {
id: string;
};
};
type ErrorEventData = {
name: string;
message: string;
errorCode: string;
};
type EventData =
| {
key: 'onauthsuccess';
data: OnAuthSuccessEventData;
}
| {
key: 'error';
data: ErrorEventData;
};
type OnEventCallback = (event: EventData) => void;
Callback property that allows for listening to internal events of the embeddable.
nativeModules
required
type:
import type storage from '@react-native-async-storage/async-storage';
import type * as cameraRoll from '@react-native-camera-roll/camera-roll';
import type geolocation from '@react-native-community/geolocation';
import type biometrics from 'react-native-biometrics';
import type documentPicker from 'react-native-document-picker';
import type * as fileSystem from 'react-native-fs';
import type permissions from 'react-native-permissions';
import type print from 'react-native-print';
type NativeModuleMap = {
biometrics?: typeof biometrics;
permissions?: typeof permissions;
cameraRoll?: typeof cameraRoll;
fileSystem?: typeof fileSystem;
documentPicker?: typeof documentPicker;
geolocation?: typeof geolocation;
print?: typeof print;
storage?: typeof storage;
};
Property used to inject native dependencies into the composite. At minimum
storage
is required.
FAQs
@icanbwell/composite. repo version: 0.752.1
The npm package @icanbwell/composite receives a total of 646 weekly downloads. As such, @icanbwell/composite popularity was classified as not popular.
We found that @icanbwell/composite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.