Skip to content

Commit f2c8277

Browse files
authored
docs: 📝 Several typographical and tone issues were fixed (#476)
1 parent 47977a3 commit f2c8277

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
See the [GitHub Pages site for the complete documentation](https://openedx.github.io/frontend-platform/).
1111

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:
1313

1414
| Service | Module location |
1515
|------------------------------------|----------------------------------|
@@ -25,13 +25,13 @@ In addition, frontend-platform provides an extensible application initialization
2525

2626
## Getting started
2727

28-
### One-time setup if you have not ugpraded node/npm
28+
### One-time setup if you have not upgraded node/npm
2929
IMPORTANT: There is now a new node/npm version being used by frontend-platform as of
3030
https://github.com/openedx/frontend-platform/pull/259
3131

3232
#### Install nvm
33-
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.
3535

3636
Alternatively, please install node16 and npm8 for use with this repository.
3737

@@ -41,7 +41,7 @@ if you don't have the right node/npm versions, nvm will instruct you to install
4141

4242
#### Clean out old node modules and reinstall
4343
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`
4545

4646

4747
### Standard getting started steps
@@ -83,7 +83,7 @@ Most applications won't need to do anything special at all.
8383

8484
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`.
8585

86-
Such an example might look like:
86+
Such an example might look like this:
8787

8888
```
8989
initialize({
@@ -98,7 +98,7 @@ initialize({
9898
});
9999
```
100100

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:
102102

103103
```jsx
104104
import { getConfig } from '@edx/frontend-platform/config';
@@ -108,14 +108,14 @@ import { getConfig } from '@edx/frontend-platform/config';
108108
console.log(getConfig().CUSTOM_VARIABLE); // returns undefined
109109

110110
const ExampleComponent = () => {
111-
// 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.
112112
console.log(getConfig().CUSTOM_VARIABLE)
113113
};
114114
```
115115

116116
### Service interfaces
117117

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).
119119

120120
![Service interface](service-interface.png)
121121

0 commit comments

Comments
 (0)