Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A minimal, clean, responsive Gatsby starter that scaffolds a new static site with React and JavaScript, ready to deploy to Netlify.
Gatsby Starter Krisp is a minimal, clean, responsive Gatsby starter that scaffolds a new static site using React and JavaScript, ready for instant deployment to Netlify.
Gatsby Starter Krisp is a boilerplate repository for creating Gatsby-based static websites. When you run gatsby new with its GitHub URL, it generates a new project containing all the standard Gatsby configuration files, a src directory for source code, and a package.json manifest. It runs on the Gatsby framework, which builds fast, static HTML sites that can be served from any CDN or static host. The starter was created and shared by GitHub user mohanmonu777 and is distributed under the MIT license.
gatsby-config.js for site metadata and plugins, gatsby-node.js for Node API customization, gatsby-browser.js for browser APIs, and gatsby-ssr.js for server-side rendering..prettierrc file is included to keep code formatting consistent across contributors.localhost:8000/___graphql for querying Gatsby's data layer.src folder contains the editable front-end code, and the homepage lives at src/pages/index.js.gatsby new your-site-name https://github.com/mohanmonu777/gatsby-starter-krisp.git to scaffold a site with a single command.src/pages/index.js in any editor; the browser will hot-reload with your changes.localhost:8000/___graphql to query site metadata and experiment with Gatsby data fetching.The starter follows the standard Gatsby workflow. First, you create a project with the Gatsby CLI, pointing it to this repository. Then you run gatsby develop, which starts a development server at localhost:8000 with hot reloading. From there, you edit the source files, and Gatsby compiles them into static pages when you run a production build. The local development server also offers the GraphiQL explorer at localhost:8000/___graphql to inspect data queries.
Yes, the starter is open-source and hosted on GitHub. The repository includes an MIT license, so you can use, modify, and distribute it freely, including for commercial projects.
Install it with the Gatsby CLI by running gatsby new your-site-name https://github.com/mohanmonu777/gatsby-starter-krisp.git in your terminal. This creates a new folder with the starter's files and installs all npm dependencies automatically.
It includes the core Gatsby configuration files (gatsby-config.js, gatsby-node.js, gatsby-browser.js, gatsby-ssr.js), a src directory with the homepage component, a Prettier config, a README, a LICENSE, and a package.json—everything needed to start developing a static site.
The simplest method is to click the "Deploy to Netlify" button in the README, which forks the repository into your Netlify account and sets up continuous deployment. You can also build it locally and deploy the public/ folder to any static host.
A live demo is hosted at https://gatsby-starter-krisp.netlify.com/. It shows the default homepage the starter produces, so you can see the minimal layout and styling before committing to the template.