Skip to content

Latest commit

 

History

History
139 lines (114 loc) · 5.61 KB

README.md

File metadata and controls

139 lines (114 loc) · 5.61 KB

Pomme Page

big buttons with easy click startpage for a browser

Index

About

I made this project to test stuffs like parcelJs, pug and other cool things in my free time. You can check a demo here to see how this page behaves and how it could look like in your browser with your screen resolution. The default configuration is probably not great for your needs, but however, with a little time, you can achieve a nice result.

Features

  • Theming Custom colors with css variables.
  • Responsive Unpredictive layout thanks to CSS grid :)
  • Modular each square is a module that you can move / remove / duplicate / customize
  • Fast loading no dependencies, no framework, no super heavy advanced features, it's light.

Built with

  • Parcel Blazing fast, zero configuration web application bundler
  • Pug Pug is a template engine for Node and for the browser. It compiles to HTML and has a simplified syntax.

Getting Started

To get a local copy up and running, you will need:

  • git
  • nodejs- Node.js® is a JavaScript runtime that will help running javascript code outside your browser

Installation

  1. Once nodeJs is installed, paste this command in your terminal to clone the repository inside the folder of your choice
    git clone git@github.com:kikiklang/pomme-page.git
  2. Still in your terminal, move into pomme-page freshly created folder and run this command to install all project dependencies
    cd pomme-page
    npm install
  3. To finish the installation, you will have to provide a .env file where you can place your configuration variables like API keys. Put this file at the root of pomme-page folder (see example with the .env.example file).

Usage

You can now open the project in your IDE and run this project locally

npm run dev

To bundle your code - ready to ship, cleaned and lightweight

npm run build

To test your production build locally

npm run serve

To delete development, build and cache folders

npm run clean

To prettify and fix your code

npm run format

Modules

Pomme Page use modules to display informations:

  • myrtille a big link with a nice icon of your favorite site
  • raisin a group of categorised links
  • pomme not really a module. Will be found in the index.pug file. its only function is to fill empty spaces.
  • clock time & date
  • search use duckduckgo or google search engines
  • binance past and current crypto currencies data
  • openweather current weather (needs API key: openweather)
  • unsplash random image display (needs API key: unsplash)
  • stormglass sea condition (needs API key: stormglass) [free up to 50 requests per day]

Customization

Modules Layout and display

Layout is made with CSS grid, you can simply move modules around in src/index.pug file. To remove a module, you have to delete the corresponding folder in src and then remove all imports found in the 3 index files (pug, css, js).

Myrtille

Links images work in svg format. To add a link, go to src/index.pug and make a myrtille. It's a pug function that takes 3 parameters:

  • domain
  • svg viewBox
  • svg path

Raisin

It's also a pug function with two parameters that you can put in src/index.pug. You must provide a name and an object of data. This object is declared in src/raisin/raisin.pug

Colors

You can make your theme with the css variables found in index.css

Contribution

Please feel free to contribute if you like this project and have some time to spare.

Deploying

After the build process, you'll find a dist folder that parcel just created. We still have API Keys in the code. In my case, i deploy this behind a caddy reverse proxy and limit/filter access to these static files only from my personal computer IP. At the end, you will load around 45 Kilobytes of html/css/js (15 Kilobytes gzipped) in your browser, which is quite light for a startpage i suppose. If you plan to deploy your build where it will not be served from your domains root (like github-pages). You must change your parcel build command in the package.json file to

"build": "npm run clean && npx parcel build src/index.pug --public-url ./ --no-cache"

Now your build will be served from the index.html files location thanks to the --public-url ./ option.

More Start Pages

You can find more lovely start pages for your browser here -> https://github.com/jnmcfly/awesome-startpage

License

Distributed under the MIT License. See LICENSE for more information.