Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/om-jannu/create-fs-app
This project is still in Developement Phase , many more templates are yet to come so stay tuned!!
https://github.com/om-jannu/create-fs-app
Last synced: 9 days ago
JSON representation
This project is still in Developement Phase , many more templates are yet to come so stay tuned!!
- Host: GitHub
- URL: https://github.com/om-jannu/create-fs-app
- Owner: Om-jannu
- Created: 2023-02-28T13:12:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-07T15:03:45.000Z (9 months ago)
- Last Synced: 2025-01-02T00:09:31.927Z (9 days ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/create-fs-app
- Size: 153 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg)
Create Full Stack apps with no build configuration.- [Creating an App](#creating-an-app) – How to create a new app.
Create fs App works on macOS, Windows, and Linux.
If something doesn’t work, please [file an issue](https://github.com/Om-jannu/create-fs-app/issues/new).## Quick Overview
```sh
npx create-fs-app my-app
cd my-app
```
If you've previously installed `create-fs-app` globally via `npm install -g create-fs-app`, we recommend you uninstall the package using `npm uninstall -g create-fs-app` or `yarn global remove create-fs-app` to ensure that npx always uses the latest version.
### Get Started Immediately
You **don’t** need to install or configure tools like webpack or Babel.
They are preconfigured and hidden so that you can focus on the code.Create a project, and you’re good to go.
# Creating an App
**You’ll need to have Node 14.0.0 or later version on your local development machine** (but it’s not required on the server). We recommend using the latest LTS version. You can use [nvm](https://github.com/creationix/nvm#installation) (macOS/Linux) or [nvm-windows](https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows) to switch Node versions between different projects.
To create a new app, you may choose one of the following methods:
### npx
```sh
npx create-fs-app my-app
```_([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) is a package runner tool that comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_
### Yarn
```sh
yarn create-fs-app my-app
```_[`yarn create `](https://yarnpkg.com/lang/en/docs/cli/create/) is available in Yarn 0.25+_
It will create a directory called `my-app` inside the current folder.
No configuration or complicated folder structures, only the files you need to build your app.
Once the installation is done, you can open your project folder:```sh
cd my-app
```