A lightweight (~1.3KB) easy to use Javascript Library to build fast web applications
Support: (IE 10+, Firefox 3.6+, Chrome 8+, Safari 5.1+, Opera 12.1+)
Just bind it in the 'head' or generally before you wanna use it
<head>
...
<scriptsrc="nor.js"></script></head>// adding a event to an element with an idnor.on("#someId","click",(event,element)=>{/* do your thing */});// adding multiple functions with multiple triggersnor.on("#someId",{mouseenter: someFunction,click: clickFunction});// target multiple elements with a single event managernor.on([".side-bar",".toggle-button"],{click(e,btn){btn.classList.toggle("open");}});// handle an event once and once onlyconstnewsComponent=document.querySelector('.news-component')nor.once(newsComponent,'dataLoaded',({detail: {data}},el)=>{newsComponent.removeSkeleton()newsComponent.populate(data)})// emit a custom event after fetching some data using .request and .emitnor.request('/news/latest/',data=>{nor.emit(newsComponent,'dataLoaded',{data: JSON.parse(data)})})The event function returns a manager/handler object.
varmanager=nor.event('#someId','click',e=>{console.log('ya clicked me! What say you?')});manager.off()// stops listening to eventsmanager.on()// start listening againmanager.once()// listen once and then stop// add another listener to the previous listener's target(s)nor.once(manager.target,'i-say',e=>{console.log(`I say ${e.detail}`);})// emit a custom event on the target element// straight from the event manager// .emit(eventName: String, =detail: Any)manager.emit('i-say','event handling and emitting has never been this easy')// do stuff with the event's target elementmanager.target.style.color='red';// create a simple HTML Heading 1 ElementvarmyBigTitle=nor.createObject("h1","An awesome title");// ...lets make it a little bit complexvarmyContainer=nor.createObject("div",{id: "main-container",// set the idclassName: "container flex",// give it some classes'data-somedata': 12,// add a data attributeparent: document.body,// attach this element to the DOM via document.bodystyle: "background-color:red;color:yellow"// and some stylistic flairon: {// add some eventsscroll: smoothScrollingMagicFunction}},myBigTitle// this is our title we created before);Now you may want to dynamically add more child nodes created asynchronously
setTimeout(()=>{// no problem at allnor.createObject("h2",{parent: myContainer},"A subtitle");});And Voila! In the <body> you should now see
<divid="main-container" class="flex container" data-somedata="12" style="background-color:red;color:yellow"><h1>An awesome title</h1><h2>A subtitle</h2></div>// make a GET call and see what it returnsnor.request("http://localhost/somephpFileorSomethingElse.txt",success,"GET");functionsuccess(result){console.log(result);// <- result = (request.responseText)}// you can send parameters toonor.request("http://localhost/getUserData.php",iGotTheUser,"POST","userId="+userId);functioniGotTheUser(user){// do something with user e.g.// var myUser = JSON.parse(user);}nor.event/on/once(target String|EventTarget|Array, type String|Object, =handle Function, =options Object|Boolean);
nor.event(document,'DOMContentLoaded',e=>{/* do something on load */})constmanager=nor.on('.cards',{animationEnd(event,element){element.classList.remove('shuffle-effect')}})manager.target// <- EventTarget|NodeList|EventTargets[]if(catastrophyOccurs){manager.off();Array.from(manager.target).forEach(card=>{card.remove();})}if(miracleHappens){constdeck=document.querySelector('.deck')deck.append(...manager.target)manager.on();// listen again}varmyTitle=nor.createObject("h1",{className: "foo bar",style: "color:#4a4; font-size:18px",parent: document.body// NOTE: attribute order doesn't matter},"An awesome title");// NOTE: The default method is "GET"nor.request('https://imgur.com/random',handleImageDataAndAppendImageToDom);MIT License
Copyright (c) 2018 Norair Mikaelyan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.