![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
jide.js is a free UI toolkit for modern web applications based on data binding and separation of concerns.
jide.js is an open source, MIT licensed, Javascript toolkit for developing rich, modern web applications. It features various powerful UI controls.
It is built around the concept of properties and data binding and enables highly efficient programming.
jide.js uses the AMD format and can be used with any AMD compatible loader such as require.js.
Since jide.js uses the AMD format, you must start by including an AMD loader in your HTML file. Since there are a lot of choices we can only handle the most obvious one: require.js.
For the purpose of this tutorial, we assume that your project has the following directory layout:
Now place the following content in your index.html
file:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./jidejs/default.css">
</head>
<body>
<!-- your HTML content, nothing for now -->
<script src="./require.js" data-main="app.js"></script>
</body>
</html>
This is a minimal HTML file that loads require.js
as well as the default jide.js theme and
your application.
Now create your app.js
and place something along the following lines in it:
// and start your application
require([
'jidejs/ui/control/Button'
], function(Button) {
// use strict mode, or not - up to you
"use strict";
// create a new Button
var myButton = new Button({
text: 'Say hello!',
on: {
click: function() {
alert("Hello World, I'm a jide.js programmer now!");
}
}
});
// add the Button to the DOM
document.body.appendChild(myButton.element);
});
Congratulations! You've successfully created your first fully functional jide.js application!
jide.js comes bundled with plenty of documentation that you can directly access from this page.
FAQs
jide.js is a free UI toolkit for modern web applications based on data binding and separation of concerns.
The npm package jide receives a total of 3 weekly downloads. As such, jide popularity was classified as not popular.
We found that jide 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.