Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jsforce/jsforce
Salesforce API Library for JavaScript applications (both on Node.js and web browser)
https://github.com/jsforce/jsforce
jsforce salesforce
Last synced: 7 days ago
JSON representation
Salesforce API Library for JavaScript applications (both on Node.js and web browser)
- Host: GitHub
- URL: https://github.com/jsforce/jsforce
- Owner: jsforce
- License: mit
- Created: 2014-01-30T08:56:14.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-12-07T05:33:50.000Z (17 days ago)
- Last Synced: 2024-12-16T19:59:53.426Z (7 days ago)
- Topics: jsforce, salesforce
- Language: TypeScript
- Homepage: https://jsforce.github.io/
- Size: 58.2 MB
- Stars: 1,384
- Watchers: 73
- Forks: 531
- Open Issues: 64
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-sfmc - jsforce
README
# jsforce
Salesforce API Library for JavaScript applications (both on web browser and Node.js)
## Overview
JSforce (f.k.a. Node-Salesforce) is an isomorphic JavaScript Library utilizing Salesforce's API: It works both in the browser and with Node.js.
It capsulates the access to various APIs provided by Salesforce in asynchronous JavaScript function calls.
It also has command line interface (CLI) which gives interactive console (REPL), so you can learn the usage without hassle.
Supported Salesforce APIs are the following:
- REST API (SOQL, SOSL, describe, etc.)
- Apex REST
- Analytics API
- Bulk API
- Chatter API
- Metadata API
- SOAP API
- Streaming API
- Tooling API## Documentation
See documentation in https://jsforce.github.io/
v3 API reference:
https://jsforce.github.io/jsforce/v1 API reference:
https://jsforce.github.io/jsforce/doc/## Migration
Migrating from v1 → v3? Find the [migration guide here](./MIGRATING_V1-V3.md)Migrating from v2 → v3? Find the [migration guide here](./MIGRATING_V2-V3.md)
## Releases
See [Releases](https://github.com/jsforce/jsforce/releases).
## Node-specific release
See [jsforce-node](./JSFORCE-NODE.md).
## License
See [license](LICENSE) (MIT License).
## Authors
- Shinichi Tomita
## Notes
If you have any questions first file it on [issues](https://github.com/jsforce/jsforce/issues) before contacting authors via e-mail.
## How to build/run tests:
See [DEVELOPING.md](./DEVELOPING.md)## Contributions
Your contributions are welcome: both by reporting issues on [GitHub issues](https://github.com/jsforce/jsforce/issues) or pull-requesting patches.
If you want to implement any additional features, to be added to JSforce to our main branch, which may or may not be merged please first check current [opening issues](https://github.com/jsforce/jsforce/issues?q=is%3Aopen) with milestones and confirm whether the feature is on road map or not.
If your feature implementation is brand-new or fixing unsupposed bugs in the library's test cases, please include additional test codes in the `test/` directory.