All Projects → Zaid-Ajaj → navigation-bar-with-feliz

Zaid-Ajaj / navigation-bar-with-feliz

Licence: other
Modern navigation bar built with Feliz

Programming Languages

javascript
184084 projects - #8 most used programming language
F#
602 projects
HTML
75241 projects
SCSS
7915 projects

Projects that are alternatives of or similar to navigation-bar-with-feliz

The Elmish Book
A practical guide to building modern and reliable web applications in F# from first principles
Stars: ✭ 231 (+1055%)
Mutual labels:  spa, fable
Feliz.Recoil
Fable bindings in Feliz style for Facebook's experimental state management library recoil.
Stars: ✭ 43 (+115%)
Mutual labels:  fable, feliz
Feliz.ViewEngine
Feliz DSL and engine for HTML generation and server side rendering (SSR)
Stars: ✭ 53 (+165%)
Mutual labels:  fable, feliz
Feliz.Bulma
Bulma UI (https://bulma.io) wrapper for amazing Feliz DSL
Stars: ✭ 57 (+185%)
Mutual labels:  fable, feliz
Frontexpress
An Express.js-Style router for the front-end
Stars: ✭ 263 (+1215%)
Mutual labels:  spa, navigation
Feliz.MaterialUI
Feliz-style Fable bindings for Material-UI
Stars: ✭ 57 (+185%)
Mutual labels:  fable, feliz
Feliz.MaterialUI.MaterialTable
Fable bindings written in the Feliz-style for material-table.
Stars: ✭ 17 (-15%)
Mutual labels:  fable, feliz
Url Parser
Parse URLs into nicely structured data
Stars: ✭ 118 (+490%)
Mutual labels:  spa, navigation
SAFE.Simplified
A lightweight alternative template of SAFE for happy cross-IDE full-stack F# development
Stars: ✭ 97 (+385%)
Mutual labels:  fable, feliz
nut
🌰 A framework born for micro frontends
Stars: ✭ 101 (+405%)
Mutual labels:  spa
demo-ionic-tab-routing
An Ionic project which shows different kinds of route definition for a tab based layout.
Stars: ✭ 34 (+70%)
Mutual labels:  navigation
Fable.Extras
A more functional construct on-top of Fable.Core.
Stars: ✭ 42 (+110%)
Mutual labels:  fable
ritwickdey.github.io
(outdated) This is my portfolio website (SPA), developed with Angular 💘 💖 💘 💖
Stars: ✭ 83 (+315%)
Mutual labels:  spa
organicmaps
🍃 Organic Maps is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists. It uses crowd-sourced OpenStreetMap data and is developed with love by MapsWithMe (MapsMe) founders and our community. No ads, no tracking, no data collection, no crapware. Your donations and positive reviews motivate and inspire our small team!
Stars: ✭ 3,689 (+18345%)
Mutual labels:  navigation
aerial.nvim
Neovim plugin for a code outline window
Stars: ✭ 485 (+2325%)
Mutual labels:  navigation
aem-spa-project-archetype
Maven Archetype for creating new AEM SPA projects
Stars: ✭ 64 (+220%)
Mutual labels:  spa
EasyScrollDots
Single page scroll JavaScript plugin that allows for vertical navigation of page sections
Stars: ✭ 38 (+90%)
Mutual labels:  navigation
dash-spa
Dash Single Page Application (SPA) Framework
Stars: ✭ 28 (+40%)
Mutual labels:  spa
a11y-dropdown
An experiment to improve accessible drop-down menus for WordPress themes.
Stars: ✭ 18 (-10%)
Mutual labels:  navigation
tesserae
Components for building h5-based single-page-applications using C#
Stars: ✭ 23 (+15%)
Mutual labels:  spa

Navigation Bar With Feliz

This example application demonstrates how to build a modern navigation bar in Feliz without any React or CSS frameworks. Instead, we are using the type-safe styling API in Feliz. The implementation is based on Animated Responsive Navbar with CSS - Plus Other Useful Tricks which uses CSS-only to build a similar navigation bar.

Demo

Requirements

Editor

To write and edit your code, you can use either VS Code + Ionide, Emacs with fsharp-mode, Rider or Visual Studio.

Development

Before doing anything, start with installing npm dependencies using npm install.

Then to start development mode with hot module reloading, run:

npm start

This will start the development server after compiling the project, once it is finished, navigate to http://localhost:8080 to view the application .

To build the application and make ready for production:

npm run build

This command builds the application and puts the generated files into the deploy directory (can be overwritten in webpack.config.js).

Tests

The template includes a test project that ready to go which you can either run in the browser in watch mode or run in the console using node.js and mocha. To run the tests in watch mode:

npm run test:live

This command starts a development server for the test application and makes it available at http://localhost:8085.

To run the tests using the command line and of course in your CI server, you have to use the mocha test runner which doesn't use the browser but instead runs the code using node.js:

npm test
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].