{"id":14957469,"url":"https://github.com/next-boilerplate/next-boilerplate","last_synced_at":"2025-05-02T07:32:42.084Z","repository":{"id":57104335,"uuid":"164273876","full_name":"next-boilerplate/next-boilerplate","owner":"next-boilerplate","description":"☶ The easiest way to create a Next app by running one command.","archived":false,"fork":false,"pushed_at":"2020-09-06T10:19:50.000Z","size":2557,"stargazers_count":70,"open_issues_count":3,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-05T15:56:59.294Z","etag":null,"topics":["boilerplates","build-tool","next","next-boilerplate","nextjs","react","reactjs","zero-configuration"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/next-boilerplate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-01-06T04:05:11.000Z","updated_at":"2024-05-03T13:55:14.000Z","dependencies_parsed_at":"2022-08-20T17:10:50.375Z","dependency_job_id":null,"html_url":"https://github.com/next-boilerplate/next-boilerplate","commit_stats":null,"previous_names":["bunlong/create-next-app","create-next-app/create-next-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-boilerplate%2Fnext-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-boilerplate%2Fnext-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-boilerplate%2Fnext-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-boilerplate%2Fnext-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/next-boilerplate","download_url":"https://codeload.github.com/next-boilerplate/next-boilerplate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224305843,"owners_count":17289446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boilerplates","build-tool","next","next-boilerplate","nextjs","react","reactjs","zero-configuration"],"created_at":"2024-09-24T13:14:56.768Z","updated_at":"2024-11-12T16:04:48.226Z","avatar_url":"https://github.com/next-boilerplate.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Create Next App [![NPM](https://img.shields.io/npm/v/@create-next-app/core.svg)](https://www.npmjs.com/package/@create-next-app/core)\n\nCreate Next App allows you to create a [Next.js](https://nextjs.org) app by running one command. It come with default, material, bootstrap, semantic... templates, Next.js examples and Next.js CMS.\n\n## Features\n\n  - Standard Template – providing a way to create your app with standard templates such as default, material, bootstrap, semantic, ... etc.\n  - Standard Example – providing a way to bootstrap your app with standard examples such as basic css, typescript, next css, next routes, redux, ... etc.\n  - Standard CMS – comming soon...\n\n## Installation\n\nCreate Next App can be installed via npm:\n\n```\nnpm install --global @create-next-app/core\n```\n\nCreate Next App can be installed via yarn:\n\n```\nyarn global add @create-next-app/core\n```\n\n## To learn how to use Create Next App\n\n- [Home](https://create-next-app.js.org)\n- [Templates](https://create-next-app.js.org/get-started-with-templates)\n- [Examples](https://create-next-app.js.org/get-started-with-examples)\n\n\u003c!-- ## Install\n\nTo use create-next-app command line interface you have to install `create-next-app`.\n\ncreate-next-app is available on npm. It can be installed with the following command:\n\n```\nnpm install --global create-next-app\n```\n\ncreate-next-app is available on yarn as well. It can be installed with the following command:\n\n```\nyarn global add create-next-app\n```\n\nYou don't need to install or setup Webpack or Babel. They come with Next.js, so you can just start coding after running create-next-app command line.\n\n## Create a Next App in seconds\n\nTo create a new Next.js app called \u003ci\u003emy-app\u003c/i\u003e with `default` or `material` or `bootstrap` or `semantic` templates.\n\n1. Go to [Create Next App templates](https://create-next-app.js.org/#templates)\n2. Choose a template to create your Next.js app (such as default)\n3. And then run `create-next-app my-app --template default`\n4. Well done!\n\nIt will create a directory called \u003ci\u003emy-app\u003c/i\u003e inside the current folder.\nInside that directory, it will generate the initial project structure and install the transitive dependencies:\n\n```\n.\n├── README.md\n├── components\n│   ├── head.js\n│   └── nav.js\n├── next.config.js\n├── node_modules\n│   ├── [...]\n├── package.json\n├── pages\n│   └── index.js\n├── static\n│   └── favicon.ico\n└── yarn.lock\n```\n\nNo configuration or complicated folder structures, just the files you need to build your app. When the installation is done, you can open your project folder, run this command:\n\n```\ncd my-app\n```\n\nInside the newly created project, you can run some built-in commands:\n\n### `npm run dev` or `yarn dev`\n\nRuns the app in development mode.\u003cbr/\u003e\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will automatically reload if you make changes to the code.\u003cbr\u003e\nYou will see the build errors and lint warnings in the console.\n\nOut of the box, we get:\n\n  - Automatic transpilation and bundling (with webpack and babel)\n  - Hot code reloading\n  - Server rendering and indexing of `./pages`\n  - Static file serving. `./static/` is mapped to `/static/`\n\n### `npm run build` or `yarn build`\n\nBuilds the app for production to the `.next` folder.\u003cbr/\u003e\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\n### `npm run start` or `yarn start`\n\nStarts the application in production mode. The application should be compiled with `npm run build` first.\n\nNow you maybe ready to code and deploy your app!\n\n## Start Next Examples\n\nThere are a bunch of examples in the Next.js repository that you can use to bootstrap your app.\n\nTo bootstrap your app with example:\n\n1. Go to [Create Next App examples](https://create-next-app.js.org/#examples)\n2. Choose an example to bootstrap your app (such as basic-css)\n3. And then run `create-next-app my-app --example basic-css`\n4. Well done!\n\nNow you maybe ready to code and deploy your app!\n\n## User Guide\n\nYou can find detailed instructions on using Next.js and many tips in [its documentation](https://nextjs.org/docs/). --\u003e\n\n## 💖 Wrap Up\n\nIf you think any of the `create-next-app` can be improved, please do open a PR with any updates and submit any issues. Also, I will continue to improve this, so you might want to watch/star this repository to revisit.\n\n## 🌟 Contribution\n\nWe'd love to have your helping hand on contributions to `create-next-app` by forking and sending a pull request!\n\nYour contributions are heartily ♡ welcome, recognized and appreciated. (✿◠‿◠)\n\nHow to contribute:\n\n- Open pull request with improvements\n- Discuss ideas in issues\n- Spread the word\n- Reach out with any feedback\n\n## ⚖️ License\n\nThe MIT License [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n\u003c!-- \n  \nrm -rf /home/bunlong/.nvm/versions/node/v12.3.1/lib/node_modules/@create-next-app\n\nnpm install --global /home/bunlong/workspace/os/create-next-app\n\n--\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnext-boilerplate%2Fnext-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnext-boilerplate%2Fnext-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnext-boilerplate%2Fnext-boilerplate/lists"}