All Projects → jamstack → Jamstack.org

jamstack / Jamstack.org

Licence: mit
The official Jamstack site

Programming Languages

Nunjucks
165 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Jamstack.org

Jamstack Cms
Modern full stack CMS. Built with Gatsby, GraphQL, AWS Amplify, and Serverless technologies.
Stars: ✭ 702 (-66.7%)
Mutual labels:  serverless, jamstack
Checkout Netlify Serverless
Sell products on the Jamstack with Netlify Functions and Stripe Checkout!
Stars: ✭ 58 (-97.25%)
Mutual labels:  serverless, jamstack
Commercejs Nextjs Demo Store
Commerce demo store built for the Jamstack. Built with Commerce.js, Next.js, and can be one-click deployed to Netlify. Includes product catalog, categories, variants, cart, checkout, payments (Stripe) order confirmation, and printable receipts.
Stars: ✭ 737 (-65.04%)
Mutual labels:  serverless, jamstack
Functions
Tutorials, examples, workshops and a playground for serverless with Netlify Functions
Stars: ✭ 463 (-78.04%)
Mutual labels:  serverless, jamstack
Serverless Backend
The serverless back end for JAMstack CMS. Use this back end to deploy a custom CMS using your own front end.
Stars: ✭ 73 (-96.54%)
Mutual labels:  serverless, jamstack
Gatsby Universal
🔮 An opinionated Gatsby v2 starter for state-of-the-art marketing sites.
Stars: ✭ 617 (-70.73%)
Mutual labels:  static-site, jamstack
Fenix
A simple and visual static web server with collaboration features.
Stars: ✭ 1,559 (-26.04%)
Mutual labels:  static-site, jamstack
Skeleventy
A skeleton boilerplate built with Eleventy.
Stars: ✭ 318 (-84.91%)
Mutual labels:  static-site, jamstack
Ecommerce Netlify
🛍 A JAMstack Ecommerce Site built with Nuxt and Netlify Functions
Stars: ✭ 1,147 (-45.59%)
Mutual labels:  serverless, jamstack
Jekyll Netlify Boilerplate
A simple Jekyll template for creating a fast, static website on Netlify
Stars: ✭ 62 (-97.06%)
Mutual labels:  static-site, jamstack
Serverlessui
A command-line utility for deploying serverless applications to AWS. Complete with custom domains, deploy previews, TypeScript support, and more.
Stars: ✭ 434 (-79.41%)
Mutual labels:  serverless, jamstack
Jamstack Comments Engine
An example of a comments engine you could add to any JAMstack site hosted on Netlify
Stars: ✭ 112 (-94.69%)
Mutual labels:  static-site, jamstack
Eleventyone
A scaffold for a quick start building with the Eleventy SSG
Stars: ✭ 390 (-81.5%)
Mutual labels:  serverless, jamstack
Headlesscms.org
Source for headlesscms.org
Stars: ✭ 628 (-70.21%)
Mutual labels:  static-site, jamstack
Gridsome Portfolio Starter
A simple portfolio theme for Gridsome powered by Tailwind CSS v1
Stars: ✭ 329 (-84.39%)
Mutual labels:  static-site, jamstack
Awesome Jamstack
Carefully curated list of awesome Jamstack resources
Stars: ✭ 1,012 (-51.99%)
Mutual labels:  static-site, jamstack
site
🏁📑 Static site generator for landing pages, docs, and more
Stars: ✭ 31 (-98.53%)
Mutual labels:  static-site, jamstack
geeky-hugo
Geeky is a Personal Hugo blog theme focused on high speed. Geeky is fully responsive, Superfast, and powered by Bootstrap v5.
Stars: ✭ 44 (-97.91%)
Mutual labels:  static-site, jamstack
Hugo Boilerplate
A Hugo boilerplate for building modern websites
Stars: ✭ 58 (-97.25%)
Mutual labels:  static-site, jamstack
Portfolio
💼 My personal portfolio built with React and three.js.
Stars: ✭ 106 (-94.97%)
Mutual labels:  serverless, jamstack

Jamstack

This is the repo for https://jamstack.org

An entry-point for learning about this architectural model. A place to learn what Jamstack is, for sharing tools, tips, examples and articles. This is also a place to find a local community meetup, or to seek support in starting one of your own.

Contributing resources

The site includes a showcase of Jamstack examples sites. You can submit a site to be included in this list. We've also collected a set of videos, presentation, articles and other learning resources about Jamstack. You can contribute content to that pool of resources too.

We accept contributions submitted as pull requests.

Contribute a site example

To contribute a site:

  1. Create a new yaml file in the src/site/_data/examples folder with a unique and descriptive name. Populate that file according to the structure shown below.
  2. Add a thumbnail image to the src/site/img/examples folder. (Image should be a jpeg 596px wide and 396px tall)
  3. Submit a pull request

example site yaml reference:

title: Your site title
description: A short description of the site.
link: The URL of this site
thumbnailurl: /img/examples/this-site-thumbnail.jpg
tools:
  - List
  - of
  - notable
  - tools
  - used

Contribute links to resources

To contribute a link to a resource:

  1. Create a new yaml file in the src/site/_data/resources folder with a unique and descriptive name. Populate that file according to the structure shown below.
  2. For presentations and video, add an optional thumbnail image to the src/site/_data/resources folder. (Image should be a jpeg 600px wide and 400px tall)
  3. Submit a pull request

resource yaml reference:

title: Resource title
date: Publish date (YYYY-MM-DD)
link: the URL of this resource
thumbnailurl: /img/cms/resources/resource-thumbnail.jpg
type:
  - article (Help us group and sort the resources by type article|video|presentation)

Before submitting a pull request, or if you are suggesting/contributing code or content changes, it is wise to preview your change in a local build. We've tried to make the process of running a local build as low as possible.

Running a local build

Prerequisites

Installing and running the build

# Clone this repository to your local environment
git clone [email protected]:jamstack/jamstack.org.git

# move in to your local site folder
cd jamstack.org

# install the dependencies
npm install

# run the build and dev server locally
npm start

Styling with TailwindCSS

This site uses TailwindCSS to offer utility CSS classes and provide a rapid means to styling the site. This means that most styling can be done without writing any additional CSS. Instead, utility classes can be added directly to the HTML. This can provide some very rapid development and also offer surprising levels of familiarity for these used to working in this way (since the conventions and classes are not per site.)

While running/developing locally, the npm run start command will generate the site including the CSS pipeline from Tailwind.

Global CSS utilities.

A small number of bespoke CSS rules are provided for efficiency of repeated or global classes. These reside in src/css/tailwind.css but these should be used sparingly, with most styling taking place in the HTML via Tailwind's utility classes.

Dev vs prod

During a production build, the CSS pipeline includes a step to remove all unused CSS statements and compress the resultant CSS. For development efficiency, this step is not performed during local development via the npm run start command. You can preview an optimised production build by running these commands:

# Run a production build
npm run build

# Serve the build locally
npm run start

One-click clone and deploy

You can clone this repository and bootstrap it as a test site of your own, complete with the CI/CD build pipeline on Netlify by clicking the button below. (Requires free GitHub and Netlify accounts)

Deploy to Netlify

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