A simple vdom component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API. Take it for a spin in our playground! Docs & Demo For a complete guide and working demo refer to the doumentation CDN NPM $ npm i @cocreate/vdom yarn $ yarn install @cocreat...
In this article, we will enhance the Gantt Chart component with some interaction possibilities for editing the jobs. In doing so, we will continue to work with Vanilla JS and Web Components and look at some JavaScript libraries that can greatly simplify the effort of developing a fully ...
Some people are afraid to move to TypeScript because they think it forces you to write a lot of boilerplate code. In my experience, once these people give TypeScript a try, they won't go back to writing Vanilla JavaScript again. I want to take this fear from you by showing how you ...
A simple socket-server component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API. Take it for a spin in ourplayground! CoCreate Docs We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help ma...
A simple overlay-scroll component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.. Latest version: 1.10.0, last published: 4 months ago. Start using @cocreate/overlay-scroll in your project by running `npm i @cocrea
Downloadthe inital Vite vanilla Javascript project to your local machine. Unzip the downloaded file. Open the unzipped folder's files in your text editor. Navigate to the unzipped folder in your terminal. Install dependencies InstallMap Componentsin the terminal as a dependency. ...
JavaScript let TxtType = function (el, toRotate, period) { this.toRotate = toRotate; this.el = el; this.loopNum = 0; this.period = parseInt(period, 10) || 2000; this.txt = ""; this.tick(); this.isDeleting = false; }; TxtType.prototype.tick = function () { let i = thi...
We’ll walk through the structure together. We’ll build a job application, which I think many of us can relate to these recent days. I’ll scaffold the baseline HTML, CSS, and JavaScript first, and then we’ll look at considerations for accessibility and validation. ...
functioncountBehavior(state,event){if(event.type==="INC"){return{...state,count:state.count+1}}}functioncreateActor(behavior,initialState){letcurrentState=initialStateconstlisteners=newSet()return{send:(event)=>{currentState=behavior(currentState,event)listeners.forEach(listener=>{listener(currentSta...
Pierre-Richard / javascript-vanilla Public Notifications Fork 0 Star 0 Code Issues Pull requests Actions Projects Security Insights Commitcreate function generateListe Browse files main Pierre-Richard committed Feb 16, 2025 1 parent d858ca3 commit 989591d ...