All Projects → SRNV → Ogone

SRNV / Ogone

Licence: MIT license
Advanced Web Composition for Future

Programming Languages

typescript
32286 projects
CSS
56736 projects

Projects that are alternatives of or similar to Ogone

frontie
Frontie is a front-end boilerplate. Gulp | Twig.js | Sass | Autoprefixer | Browsersync | Bootstrap 4 Grid System & Responsive Breakpoints
Stars: ✭ 28 (-26.32%)
Mutual labels:  front-end, frontend-framework, front-end-development
Front End Web Development Resources
This repository contains content which will be helpful in your journey as a front-end Web Developer
Stars: ✭ 3,452 (+8984.21%)
Mutual labels:  front-end, frontend-framework, front-end-development
Roadmap Web Developer 2017
Front-end (HTML5/CSS3/Javascript related) technologies to learn in 2017
Stars: ✭ 142 (+273.68%)
Mutual labels:  front-end, front-end-development
100 Days Of Code Frontend
Curriculum for learning front-end development during #100DaysOfCode.
Stars: ✭ 2,419 (+6265.79%)
Mutual labels:  front-end, front-end-development
composer-asset-compiler
Composer plugin that installs dependencies and compiles assets based on configuration.
Stars: ✭ 19 (-50%)
Mutual labels:  front-end, front-end-development
Patternfly Design
Use this repo to file all new feature or design change requests for the PatternFly project
Stars: ✭ 82 (+115.79%)
Mutual labels:  front-end, front-end-development
Fe News
FE 기술 소식 큐레이션 뉴스레터
Stars: ✭ 2,249 (+5818.42%)
Mutual labels:  front-end, deno
Portfolio
📰 Meu portfólio criado com o objetivo de mostrar meus projetos recentes e futuros ao longo da minha carreira.
Stars: ✭ 178 (+368.42%)
Mutual labels:  front-end, front-end-development
ta-gallery
You can use the light-weight, responsive and mobile first gallery, carousel, slide show or rotator for images, texts and every kind of content.
Stars: ✭ 87 (+128.95%)
Mutual labels:  front-end, front-end-development
Frontend-StarterKit
Frontend StarterKit - [Gulp 4, Pug, SCSS, ES6+]
Stars: ✭ 13 (-65.79%)
Mutual labels:  front-end, front-end-development
frontend-starter-kit-with-gulp
Frontend Starter Kit with Gulp for either Themeforest Projects or customizable projects.
Stars: ✭ 34 (-10.53%)
Mutual labels:  front-end, front-end-development
Dev Practice
Practice your skills with these ideas.
Stars: ✭ 1,127 (+2865.79%)
Mutual labels:  front-end, front-end-development
Portfolio
Front-end developer portfolio website
Stars: ✭ 53 (+39.47%)
Mutual labels:  front-end, front-end-development
Fast
Develop, build, deploy, redeploy, and teardown frontend projects fast.
Stars: ✭ 126 (+231.58%)
Mutual labels:  front-end, front-end-development
Spionio
Lightweight focus group management platform that can capture and replay user interaction on your site and improve the UX in everything you build
Stars: ✭ 40 (+5.26%)
Mutual labels:  front-end, front-end-development
Alumna
[Alpha release of v3] Development platform for humans / Plataforma de desenvolvimento para humanos
Stars: ✭ 32 (-15.79%)
Mutual labels:  front-end, frontend-framework
castlecss-boilerplate
A simple and mobile-friendly HTML5 template with CastleCSS to kickstart your website
Stars: ✭ 29 (-23.68%)
Mutual labels:  front-end, front-end-development
The Front End Architect Resource List
Front End Architecture resources
Stars: ✭ 21 (-44.74%)
Mutual labels:  front-end, front-end-development
Front End Interview Handbook
⚡️ Front End interview preparation materials for busy engineers
Stars: ✭ 32,265 (+84807.89%)
Mutual labels:  front-end, front-end-development
frontend-tips
Super tiny, quick tips, tricks and best practices of front-end development
Stars: ✭ 511 (+1244.74%)
Mutual labels:  front-end, front-end-development

Ogone

ogone version ogone commit stars issues forks license deno version denoland nest badge

Description

Ogone for Front-end fields using Deno. Designed differently, start creating differently. Everything is a component because everything is a part of the composition.

Actually Ogone is too young to be used for production, expect breaking chnages until the 1.0.0.

Ogone has it own extension *.o3 which allow some new features.

If you're interested by this project: please join the Discord here

If you want to collaborate: please find the project's architecture here

Installation

deno install -Afq --unstable https://deno.land/x/ogone/cli/ogone.ts

Overview

find this example in this repository

import component StoreMenu from '@/examples/app/stores/StoreMenu.o3';

/**
 * @name Burger
 * @description
 *   this component will open the menu in the application
*/
<template>
  <style>
    @const shadowColor = #00000045;
    @const lineBackground = #848181;
    .container {
      padding: 9px;
      width: 28px;
      height: auto;
      background: var(--o-header);
      display: flex;
      flex-direction: column;
      filter: drop-shadow(0px 0px 0px $shadowColor);
      &:hover {
        filter: drop-shadow(0px 5px 3px $shadowColor);
      }
      &:hover .line {
        background: var(--o-primary);
      }
      .line {
        background: $lineBackground;
        margin-top: 2px;
        margin-bottom: 2px;
        height: 4px;
      }
      .line, & {
        border-radius: 5px;
        transition: filter 0.2s ease;
        cursor: pointer;
      }
    }
  </style>
  <StoreMenu namespace="menu" />
  <div class="container" --click:openMenu>
    <div class="line"></div>
    <div class="line"></div>
    <div class="line"></div>
  </div>
</template>
<proto>
  declare:
    public isOpen: boolean = false;
  case 'click:openMenu':
    Store.dispatch('menu/toggle')
    Store.dispatch('menu/checkController')
      .then((res: any) => {
        console.warn(res);
      });
    break;
</proto>

Extensions

the only extension available is Otone on Visual Studio Code, this one includes the following configurations:

  • snippets
  • syntax high-lighting
  • diagnostics
  • webview (live edition)
  • overviews
  • quick naviguation
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].