All Projects → agea → CmisJS

agea / CmisJS

Licence: MIT license
A CMIS javascript library for node and browser

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to CmisJS

bower-angular-translate
angular-translate Bower Package
Stars: ✭ 73 (+82.5%)
Mutual labels:  bower
q-municate-web
Q-municate Web chat application
Stars: ✭ 66 (+65%)
Mutual labels:  bower
rdm-app
Code for the rdm.openlighting.org site
Stars: ✭ 17 (-57.5%)
Mutual labels:  bower
alfresco-esign-cert
Alfresco client certificate signature (including Chrome)
Stars: ✭ 27 (-32.5%)
Mutual labels:  alfresco
project-manager-laravel
Project manager system - PHP and AngularJS
Stars: ✭ 17 (-57.5%)
Mutual labels:  bower
igni-core
UNSUPPORTED: An easy to use & featherlight CMS that shortcuts the bootstrapping of backend PHP + MySQL based projects. Developed in Laravel, it uses the latest PHP coding standards and library versions.
Stars: ✭ 13 (-67.5%)
Mutual labels:  bower
unjector
An injector for ISP injectors
Stars: ✭ 28 (-30%)
Mutual labels:  bower
alfresco-simple-content-stores
Addon to provide a set of common content store implementations and easy-to-use configuration (no Spring config)
Stars: ✭ 40 (+0%)
Mutual labels:  alfresco
alfresco-share-online-edition-addon
Online edition with Libreoffice in Alfresco Share
Stars: ✭ 15 (-62.5%)
Mutual labels:  alfresco
web-starter-kit-gulp
Starter kit for automated front-end web development using Gulp, NPM, Bower, Babel, Sass, and Pug.
Stars: ✭ 35 (-12.5%)
Mutual labels:  bower
bower-resolve-webpack-plugin
Offers an enhanced bower support for enhanced-resolve plugin.
Stars: ✭ 12 (-70%)
Mutual labels:  bower
godlike.css
CSS for layout standardization and usability of web applications
Stars: ✭ 12 (-70%)
Mutual labels:  bower
emma.css
🍴 Emma.css { utility-classes: emmet-like; }
Stars: ✭ 53 (+32.5%)
Mutual labels:  bower
browserify-bower
A browserify plugin, to enable you use bower components just like node modules
Stars: ✭ 20 (-50%)
Mutual labels:  bower
alfresco-simple-ocr
Simple OCR action for Alfresco
Stars: ✭ 40 (+0%)
Mutual labels:  alfresco
generator-craftskeleton
Starterkit for Craft CMS 2.x (Multi-Environment Configs with HeartyConfig, Gulp, and Bower for Dependencie-Management)
Stars: ✭ 14 (-65%)
Mutual labels:  bower
checkbower
Validates your bower.json files
Stars: ✭ 13 (-67.5%)
Mutual labels:  bower
angular-barcode
An angular directive for lindell's JsBarcode
Stars: ✭ 25 (-37.5%)
Mutual labels:  bower
animecenter
The source code for animecenter
Stars: ✭ 16 (-60%)
Mutual labels:  bower
onlyoffice-alfresco
The package which enables the users to edit office documents from Alfresco using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Alfresco
Stars: ✭ 33 (-17.5%)
Mutual labels:  alfresco

CmisJS

A CMIS typescript/javascript library for node and browser, with no dependencies for modern browsers

Build Status npm MIT License

Breaking API changes in 1.x

In version 1.x all CmisSession methods which connect to repository return a Promise

https://agea.github.io/CmisJS

You can find the documentation for older version at: https://agea.github.io/CmisJS/docs_v0.x/

Install

npm

npm install cmis

bower

bower install cmis

typescript (node or browser)

import { cmis } from cmis;

javascript (node)

var cmis = require('cmis');

javascript (browser)

If you need polyfills for fetch (https://caniuse.com/fetch), Promise (https://caniuse.com/promise) and URLSearchParams (https://caniuse.com/urlsearchparams) you have to include this file before including cmis library:

<script src="node_or_bower_path/dist/cmis.polyfills.js"></script>

Then, you can include the minified version:

<script src="node_or_bower_path/dist/cmis.bundle.js"></script>

javascript (CDN)

<script src="//cdn.jsdelivr.net/gh/agea/cmisjs/dist/cmis.polyfills.js"></script>
<script src="//cdn.jsdelivr.net/gh/agea/cmisjs/dist/cmis.bundle.js"></script>

Usage

See Reference at: https://agea.github.io/CmisJS/classes/cmis.cmissession.html

and tests to see how to use the library at: https://github.com/agea/CmisJS/blob/master/src/cmis.spec.ts

License

MIT - https://github.com/agea/CmisJS/blob/master/LICENSE

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].