Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

create-rescript-app

Package Overview
Dependencies
Maintainers
4
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-rescript-app - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

index.mjs

35

package.json
{
"name": "create-rescript-app",
"version": "1.3.0",
"description": "Create ReScript apps with no build configuration.",
"main": "index.js",
"version": "1.4.0",
"description": "Quickly create new ReScript apps from project templates.",
"main": "index.mjs",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.js",
"test": "echo \"Error: no test specified\" && exit 1"
"start": "node index.mjs",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=12"
},
"files": [
"index.mjs"
],
"dependencies": {
"colors": "^1.4.0",
"shelljs": "^0.8.4"
"ansi-colors": "^4.1.3",
"enquirer": "^2.3.6"
},
"devDependencies": {
"parcel-bundler": "^1.12.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mahezsh/create-rescript-app.git"
"url": "git+https://github.com/rescript-lang/create-rescript-app.git"
},
"bugs": {
"url": "https://github.com/mahezsh/create-rescript-app/issues"
"url": "https://github.com/rescript-lang/create-rescript-app/issues"
},
"homepage": "https://github.com/mahezsh/create-rescript-app#readme",
"homepage": "https://github.com/rescript-lang/create-rescript-app#readme",
"keywords": [

@@ -35,4 +37,7 @@ "rescript",

"bin": {
"create-rescript-app": "index.js"
"create-rescript-app": "index.mjs"
},
"devDependencies": {
"prettier": "^2.7.1"
}
}
# create-rescript-app
Create ReScript apps with no build configuration.
Quickly create new [ReScript](https://rescript-lang.org/) apps from project templates.

@@ -12,29 +12,1 @@ ## Quick Start

```
## Install options
| Template | short cmd | long cmd |
| :------------------------------- | :-------: | ----------: |
| Basic | -b | --basic |
| Default / CRA equivalent (React) | -d | --default |
| NextJS | -nx | --nextjs |
| GraphQL | -gql | --graphql |
| Storybook | -sb | --storybook |
### Bootstrap a ReScript app with Graphql
```sh
npx create-rescript-app my-app -gql
```
### Bootstrap a ReScript app with Storybook
```sh
npx create-rescript-app my-app -sb
```
### Bootstrap a NextJS app with ReScript
```sh
npx create-rescript-app my-app -nx
```
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc