Kity Minder Plus is an optimized and enhanced version of KityMinder, designed to better adapt to modern front-end technology frameworks.
This project is currently in its first phase, which includes:
- Adjusting UI page styles
- Optimizing interaction logic
This project is developed based on the Kityminder Editor. The original project address is: https://github.com/fex-team/kityminder-editor
The index.html file in the root directory is for the development environment, while the index.html file in the dist directory uses the packaged code and is suitable for production environments.
Install Node.js and npm
Initialization: Navigate to the kityminder-editor root directory and run npm run init
Launch the project by running grunt dev in the kityminder-editor root directory
You can develop based on the index.html in the root directory or review the production-ready index.html in the dist directory. Enjoy it!
Additionally, kityminder-editor provides a Bower package for developers to use directly. In your project directory where kityminder-editor is needed, run bower install kityminder-editor. Then manually include the CSS and JS files kityminder-editor depends on—refer to index.html in the dist directory for specifics. We recommend using the npm package wireDep for automated setup; see Gruntfile.js in the root directory for details.
Run grunt build. Once completed, the dist directory will contain a fully functional kityminder-editor. Double-click index.html to open and run the example.
Users can configure kityminder-editor as needed. The specific usage method is as follows:
angular.module('kityminderDemo', ['kityminderEditor'])
.config(function (configProvider) {
configProvider.set('imageUpload', 'path/to/image/upload/handler');
});This project is developed and written under the GNU License.