Socket
Socket
Sign inDemoInstall

@contentful/create-contentful-app

Package Overview
Dependencies
140
Maintainers
3
Versions
591
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @contentful/create-contentful-app

A template for building Contentful Apps


Version published
Weekly downloads
628
increased by39.25%
Maintainers
3
Created
Weekly downloads
 

Readme

Source

Create Contentful App

create-contentful-app is a command line interface to easily bootstrap Contentful Apps.

Requirements

  • Node.js v18.12 or later
  • npm v9 or later

Usage

To start developing your first app, run:

npx create-contentful-app my-first-app

Screenshot of npx create-contentful-app my-app

Bootstrap

You can run create-contentful-app using one of the following commands:

# npx
npx create-contentful-app <app-name>

# npm
npm init contentful-app <app-name>

# Yarn
yarn create contentful-app <app-name>

CLI Options

Package Manager

--npm or --yarn

Use npm or Yarn to manage dependencies. If omitted, defaults to the manager used to run create-contentful-app.

Both flags are mutually exclusive.

Template

Select between predefined and custom templates:

  • -ts, --typescript: Use TypeScript template (default)
  • -js, --javascript: Use JavaScript template
  • -e, --example <example-name>: Select a predefined template from https://github.com/contentful/apps/tree/master/examples
  • -s, --source <url>: Use a custom template. Format: URL (HTTPS or SSH) or vendor:user/repo (e.g., github:user/repo)

These flags are mutually exclusive. If no flag is provided, the TypeScript template is used.

Some popular templates are:

TemplateCLI Command
typescriptyarn create contentful-app -ts
javascriptyarn create contentful-app -js
nextjsyarn create contentful-app --example nextjs
vite-reactyarn create contentful-app --example vite-react
vueyarn create contentful-app --example vue

Help

--help

Shows all available CLI options:

Usage: npx create-contentful-app [options] [app-name]

Bootstrap your app inside a new folder `my-app`

  create-contentful-app my-app

or specify your own template

  create-contentful-app my-app --source "github:user/repo"

Official Contentful templates are hosted at https://github.com/contentful/apps/tree/master/examples.

Arguments:
  app-name                                      app name

Options:
  --npm                                         use npm
  --yarn                                        use Yarn
  -js, --javascript                             use default JavaScript template
  -ts, --typescript                             use default TypeScript template
  -e, --example <example-name>                  bootstrap an example app from https://github.com/contentful/apps/tree/master/examples
  -s, --source <url>                            provide a template by its source repository.
                                                format: URL (HTTPS or SSH) or vendor:user/repo (e.g., github:user/repo)
  -a, --actions                                 includes a hosted app action in ts or js template
  -f, --function <function-template-name>       include the specified function template
  -h, --help                                    shows all available CLI options

In order to run the app within Contentful run npm run create-app-definition within your app directory to create an app definition.

Tracking

We gather depersonalized usage data of our CLI tools in order to improve experience. If you do not want your data to be gathered, you can opt out by providing an env variable DISABLE_ANALYTICS set to any value:

Example

DISABLE_ANALYTICS=true npx create-contentful-app

Keywords

FAQs

Last updated on 23 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc