contract-tests-example
No description available.
File Explorer
- Job.test.js
- Job.js
- getQueryParams.js
- index.js
- package-lock.json
- package.json
- pact.setup.js
- Job.js
- JobModel.js
- generateJob.js
- generateSalaryRange.js
- generateTitle.js
- index.js
- jobId.js
- getQueryParams.js
- index.js
- package-lock.json
- package.json
- react-router-dom.js
- Loading.jsx
- NotFound.jsx
- Salary.jsx
- JobListPage.test.jsx.snap
- JobPage.test.jsx.snap
- JobListPage.test.jsx
- JobPage.test.jsx
- JobListPage.jsx
- JobPage.jsx
- services.test.js
- fetchJob.js
- fetchJobList.js
- index.html
- index.jsx
- style.scss
- .babelrc
- enzyme.setup.js
- package-lock.json
- package.json
- pact.setup.js
- webpack.config.js
- backend-for-webui-job-service.json
- web-ui-backend-for-webui.json
- .editorconfig
- .gitignore
- .travis.yml
- lerna.json
- LICENSE
- package-lock.json
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
