Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Alfresco/alfresco-js-api
This project provides a JavaScript client API into the Alfresco REST API and Activiti REST API.
https://github.com/Alfresco/alfresco-js-api
activiti alfresco bpm ecm nodejs
Last synced: 7 days ago
JSON representation
This project provides a JavaScript client API into the Alfresco REST API and Activiti REST API.
- Host: GitHub
- URL: https://github.com/Alfresco/alfresco-js-api
- Owner: Alfresco
- License: apache-2.0
- Archived: true
- Created: 2016-04-18T10:09:09.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2024-02-08T16:19:33.000Z (9 months ago)
- Last Synced: 2024-09-29T18:02:25.365Z (about 1 month ago)
- Topics: activiti, alfresco, bpm, ecm, nodejs
- Language: TypeScript
- Homepage:
- Size: 355 MB
- Stars: 118
- Watchers: 66
- Forks: 62
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Alfresco JavaScript API
JavaScript client API for the Alfresco REST API and Activiti REST API.
**IMPORTANT: THE PROJECT HAS MOVED TO THE [ADF REPOSITORY](https://github.com/Alfresco/alfresco-ng2-components)**
## API clients documentation
- [Authentication Api](src/api/auth-rest-api/README.md)
- [Content Api](src/api/content-rest-api/README.md)
- [Model Api](src/api/model-rest-api/README.md)
- [Process Api (AAE)](src/api/activiti-rest-api/README.md)
- [Search Api](src/api/search-rest-api/README.md)
- [Governance Classification Api](src/api/gs-classification-rest-api/README.md)
- [Governance Core Api](src/api/gs-core-rest-api/README.md)
- [Discovery Content API](src/api/discovery-rest-api/README.md)## Guides
- [Authentication](docs/authentication.md)
- [Calling Custom Endpoints](docs/calling-custom-endpoints.md)
- [Error Events](docs/error-events.md)
- [ECM Examples](docs/ecm-example.md), full docs: [Content API](src/api/content-rest-api/README.md)
- [BPM Examples](docs/bpm-example.md), full docs: [APS 2.X API](src/api/activiti-rest-api/README.md)## Prerequisites
The minimal supported versions are:
- Alfresco Platform Repository: version [5.2.a-EA](https://wiki.alfresco.com/wiki/Community_file_list_201606-EA) or newer
- Activiti: 1.5
- Node.js ([Long Term Support](https://nodejs.org/en/) version)## Installing
Using NPM:
```sh
npm install @alfresco/js-api
```## Development
To run the build
```sh
npm run build
```To run the test
```sh
npm run test
```