
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
qxc.promise
Advanced tools
Includes a helper to use RequireJS/alameda, whatwg-fetch and bluebird with Qooxdoo.
Includes a helper to use Qooxdoo with RequireJS/alameda, whatwg-fetch and bluebird.
It also includes restful.js, swagger-client and swagger-parser all of this is optional.
This requires grunt-qx with qxcompiler.
npm install qxc.promise --save
{
"dependencies": [
"qooxdoo-sdk",
"qxc.promise"
]
}
And your done.
mkdir vendor
cd vendor
git submodule add https://github.com/drawstack/qxc.promise.git
cd ..
You have the choice, either as librayHint
or vendor as libraryDir
.
libraryDir
(prefrerred):
grunt.initConfig({
qx: {
options: {
/* Your Options here */
libraryDirs: [
'node_modules',
'vendor'
]
}
}
});
librayHint
:
grunt.initConfig({
qx: {
options: {
/* Your Options here */
libraryHints: {
'qxc.promise': 'vendor/qxc.promise'
}
}
}
});
{
"dependencies": [
"qooxdoo-sdk",
"qxc.promise"
]
}
// You can omit these, but they will only get loaded when
// you realy use them.
qxc.promise.Rest.getInstance().init();
qxc.promise.Swagger.getInstance().init();
// Init QXCPROMISE which will call requirejs.config.
// make sure to do this as last .init(),
// if you have other contribs that require QXCPROMISE.
qxc.promise.Init.getInstance().init();
Download and copy them:
cd vendor/qxc.promise
npm install
grunt copy-pretty-deps
cd ../..
Add pretty-deps to your Application.js:
// You can omit these, but they will only get loaded when
// you realy use them.
qxc.promise.Rest.getInstance().initPretty();
qxc.promise.Swagger.getInstance().initPretty();
// Init QXCPROMISE which will call requirejs.config.
// make sure to do this as last .init(),
// if you have other contribs that require QXCPROMISE.
qxc.promise.Init.getInstance().init();
cd vendor/qxc.promise/demo/default
npm install
git clone https://github.com/johnspackman/qooxdoo.git
cd qooxdoo
git checkout -b qxcompiler-master-v2 origin/qxcompiler-master-v2
cd ..
QOOXDOO_PATH=$PWD/qooxdoo grunt serve
René Jochum rene@jochums.at
MIT
FAQs
Includes a helper to use RequireJS/alameda, whatwg-fetch and bluebird with Qooxdoo.
We found that qxc.promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.