| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/node-yargs/ |
Upload File : |
# Webpack usage examples
## Install dependencies
```bash
$ npm install --save-dev webpack webpack-cli yargs
```
Additional dependencies for typescript users:
```bash
$ npm install --save-dev ts-loader typescript @types/yargs
```
## Sample program
Create `src/index.js`:
```js
const yargs = require('yargs')
console.log(yargs.parse())
```
Or for typescript users, `src/index.ts`:
```ts
import yargs = require('yargs');
console.log(yargs.parse());
```
along with its `tsconfig.json`:
```json
{
"compilerOptions": {
"sourceMap": true
}
}
```
## Webpack configuration
Create `webpack.config.js`:
```js
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js'
},
stats: {
// Ignore warnings due to yarg's dynamic module loading
warningsFilter: [/node_modules\/yargs/]
},
target: 'node'
}
```
For typescript users, replace :
```js
module.exports = {
entry: './src/index.js',
...
}
```
by:
```js
module.exports = {
entry: './src/index.ts',
module: {
rules: [
{
test: /\.ts$/,
use: [
'ts-loader',
]
}
]
},
resolve: {
extensions: ['.ts', '.js'],
},
...
}
```
## Build
```bash
$ ./node_modules/.bin/webpack --mode=production
```
## Run
```bash
$ rm -rf node_modules
$ node dist/index.js
{ _: [], '$0': 'dist/index.js' }
```