CoastalCommitsPastes/server/node_modules/globalize/examples/node-npm/README.md

58 lines
1.2 KiB
Markdown
Raw Normal View History

2022-03-06 16:46:59 -08:00
# Hello World (Node.js + npm)
We assume you know what [Node.js](http://nodejs.org/) and
[npm](https://www.npmjs.org/) is.
The demo contains one single file:
```
.
└── main.js
```
Before running it, execute the requirements below.
## Requirements
**1. Install Globalize**
Let's use npm to download Globalize. For more information on regard of
installation, please read [Getting Started](../../README.md#installation).
```
npm install
```
Then, you'll get this:
```
.
├── node_modules/
│ ├── globalize/
│ │ └── dist/
│ │ ├── globalize
│ │ │ ├── date.js
│ │ │ └── ...
│ │ └── globalize.js
│ └── ...
└── main.js
```
**2. Dependencies**
No action needed, because npm has already handled that for us.
**3. CLDR content**
No action needed, because npm has already handled that for us. For more
information, see [npm's cldr-data](https://github.com/rxaviers/cldr-data-npm).
## Running the demo
Once you've completed the requirements above:
1. Run `node main.js`.
1. Understand the demo by reading the source code. We have comments there for you.