You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
See the [GitHub Pages site for the complete documentation](https://openedx.github.io/frontend-platform/).
11
11
12
-
frontend-platform is a modest application framework for Open edX micro-frontend applications and their supporting libraries. It provides a number of foundational services that all Open edX micro-frontends should have:
12
+
frontend-platform is a modest application framework for Open edX micro-frontend applications and their supporting libraries. It provides several foundational services that all Open edX micro-frontends should have:
This is highly recommended in order to be able to leverage different node/npm versions.
34
-
For a period of time, different repositories may be using different versions of node/npm.
33
+
This is highly recommended to be able to leverage different node/npm versions.
34
+
For a some time, different repositories may be using different versions of node/npm.
35
35
36
36
Alternatively, please install node16 and npm8 for use with this repository.
37
37
@@ -41,7 +41,7 @@ if you don't have the right node/npm versions, nvm will instruct you to install
41
41
42
42
#### Clean out old node modules and reinstall
43
43
This step is needed because node now uses a different package lock format, and it's important to reinstall
44
-
dependencies based on this new package file. Delete node_modules, and issue a`npm ci`
44
+
dependencies based on this new package file. Delete node_modules, and issue an`npm ci`
45
45
46
46
47
47
### Standard getting started steps
@@ -83,7 +83,7 @@ Most applications won't need to do anything special at all.
83
83
84
84
When the application loads, a list of known environment variables is loaded from `process.env` into an object which it exposes via `getConfig` - the point here is primarily to isolate our code from usages of `process.env` which may not always be the way we choose to configure our apps. The application initialization lifecycle supports runtime configuration as well via the `config` handler, documented in the [initialize function](https://edx.github.io/frontend-platform/module-Initialization.html#~initialize). If you want to get a variable into the config that it’s not expecting, you can use [`mergeConfig`](https://edx.github.io/frontend-platform/module-Config.html#~mergeConfig) during initialization to add it in from `process.env`.
85
85
86
-
Such an example might look like:
86
+
Such an example might look like this:
87
87
88
88
```
89
89
initialize({
@@ -98,7 +98,7 @@ initialize({
98
98
});
99
99
```
100
100
101
-
When using runtime configuration via `mergeConfig` noted above, `getConfig` must be called within a component's render lifecycle in order for the added keys and values to be returned in the configuration object. If `getConfig` is called outside of a component's render lifecycle, the custom configuration key/value pairs will not initially be part of the object returned by `getConfig`. For example:
101
+
When using runtime configuration via `mergeConfig` noted above, `getConfig` must be called within a component's render lifecycle for the added keys and values to be returned in the configuration object. If `getConfig` is called outside of a component's render lifecycle, the custom configuration key/value pairs will not initially be part of the object returned by `getConfig`. For example:
// This returns the value as expected since it is called after `mergeConfig` has already executed.
111
+
// This returns the value as expected since it is called after `mergeConfig` has already been executed.
112
112
console.log(getConfig().CUSTOM_VARIABLE)
113
113
};
114
114
```
115
115
116
116
### Service interfaces
117
117
118
-
Each service (analytics, auth, i18n, logging) provided by frontend-platform has a API contract which all implementations of that service are guaranteed to fulfill. Applications that use frontend-platform can use its configured services via a convenient set of exported functions. An application that wants to use the service interfaces need only initialize them via the initialize() function, optionally providing custom service interfaces as desired (you probably won't need to).
118
+
Each service (analytics, auth, i18n, logging) provided by frontend-platform has an API contract which all implementations of that service are guaranteed to fulfill. Applications that use frontend-platform can use its configured services via a convenient set of exported functions. An application that wants to use the service interfaces need only initialize them via the initialize() function, optionally providing custom service interfaces as desired (you probably won't need to).
0 commit comments