xizon / uix-documentation

An HTML documentation tool, nothing more.

Home Page:https://xizon.github.io/uix-documentation/examples/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Uix Documentation

Installation And Test

You will need to have node setup on your machine. That will output the built distributables to ./dist/* and ./examples/*.html.

Step 1. Download the latest version from Github. For nodejs you have to install some dependencies.

$ git clone git://github.com/xizon/uix-documentation.git

Step 2. First, using an absolute path into your "uix-documentation/" folder directory.

$ cd /{your_directory}/uix-documentation

Step 3. Before doing all dev stuff make sure you have Node 10+ installed. After that, run the following code in the main directory to install the node module dependencies.

$ sudo npm install --only=dev --unsafe-perm --production

Step 4. Run the following code to enter development mode. The converted ES5 files will be created.

$ npm run build

Step 5. When you done, this will spin up a server that can be accessed at

http://localhost:8080/examples/

Note:

ERROR: npm update check failed.

$ sudo chown -R $USER:$(id -gn $USER) /Users/{username}/.config

File Structures

uix-documentation/
├── README.md
├── LICENSE
├── webpack.config.js
├── package-lock.json
├── package.json
├── dist/
│   ├── css/
│   │   ├── app.css
│   │   ├── app.css.map
│   │   ├── app.min.css
│   │   └── app.min.css.map
│   └── js/
│   │   ├── app.js
│   │   ├── app.js.map
│   │   ├── app.min.js
│   │   └── app.min.js.map
├── src/
│   ├── index.js
│   ├── components/
├── examples/
└──

Licensing

Licensed under the MIT.

About

An HTML documentation tool, nothing more.

https://xizon.github.io/uix-documentation/examples/

License:MIT License


Languages

Language:HTML 70.9%Language:SCSS 16.2%Language:JavaScript 12.8%