pejava.js
v1.0.18
Published
Javascript ecosystem pejava.js
Downloads
55
Readme
Powered by React from Facebook
Install
npm install --save pejava.js
Usage
// es5
<script src="https://unpkg.com/pejava.js@latest/projects/app_js/dist/index.js"></script>
<script>
document.addEventListener("app", function (e) {
application(e.detail);
})
</script>
<script>
function application(app) {
// "app" ready to work
}
</script>
Description
pejava.js
is an ecosystem which is already defined set
of components to quickly build JS application.
The peculiarity of the ecosystem is that there is no need for the application to develop html markup or css styles. Everything is built on pure javascript (es5 or es6).
To better understand the essence, it would be better to look at a demo example:
https://unpkg.com/pejava.js@latest/projects/demo_js/dist/index.html
And take a look the source code of this example:
https://unpkg.com/browse/pejava.js@latest/projects/demo_js/src/
Or it is possible to clone git repository:
git clone https://github.com/voy22/pejava.js
API
See documentation
Screenshot
Icons library
Discover more here the source code here
Quick start on es5 (video)
https://youtu.be/hskugocGa80
To see the source code here
Quick start on es6 ()
mkdir project
cd project/
npm init
npm i pejava.js -D
cp -r ./node_modules/pejava.js/projects/template/* ./
npm i -D
npm run serve
And you can start to work with this template.
If your application should be MultiLanguage, then use template_multilang
instead template
cp -r ./node_modules/pejava.js/projects/template_multilang/* ./
Some features of pejava.js
pejava.js
is ecosystem (To use prepared components out of box)All components are
elements
orcontainer-elements
. That means inside eachcontainer-elements
can be placedcontainer-elements
orelements
.pejava.js
is intended for technical design only, when final interface has lists, forms or texts only.Chain of windows, when all windows on one screen (see screenshot).
Powered by javascript library "React"
It doesn't support Internet Explorer