Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/accruent/now-sync
A CLI tool to make ServiceNow development easy.
https://github.com/accruent/now-sync
cli servicenow sync
Last synced: about 1 month ago
JSON representation
A CLI tool to make ServiceNow development easy.
- Host: GitHub
- URL: https://github.com/accruent/now-sync
- Owner: Accruent
- License: mit
- Created: 2017-01-10T17:38:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T01:56:05.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T04:38:51.348Z (about 2 months ago)
- Topics: cli, servicenow, sync
- Language: JavaScript
- Size: 969 KB
- Stars: 4
- Watchers: 4
- Forks: 5
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NOW-sync
A tool to help developers sync local files to ServiceNow record fields. Requires [NodeJS](https://nodejs.org).
## Commands
```text
now [command]Commands:
now check Checks for any config errors
now config Initiates config for current folder (run this first)
[aliases: init, c]
now info Lists information about ServiceNow instance [aliases: i]
now add:table Add a new table configuration to sync with local files
[aliases: at]
now add Add record files to sync with a ServiceNow record [aliases: a]
now pull Overwrites all local file content with synced ServiceNow record
content
now push Overwrites all synced ServiceNow record fields with local file
content
now sync !DANGER! Perform a one-time sync on all synced local files with
ServiceNow records
now watch Watches project folder files for changes and pushes changes to
ServiceNowOptions:
--version Show version number [boolean]
--help Show help [boolean]
```## Quick Start
1. Install [NodeJS](https://nodejs.org). Use [nvm](https://github.com/creationix/nvm) or [nvm-windows](https://github.com/coreybutler/nvm-windows) or [asdf](https://github.com/asdf-vm/asdf) if you’d like.
1. Install this package: `yarn global add now-sync` (or `npm -g install now-sync`).
1. Run `now config` to configure your local environment.
1. Test your configuration by running `now info`.
1. Run `now add` to add a record to sync.
1. Run `now watch` to start watching local files.
1. Make some file changes, watch your file updates sync with the ServiceNow record.
1. Happy development!