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

create-react-app-fullstack

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-react-app-fullstack - npm Package Compare versions

Comparing version 1.0.11 to 1.0.12

2

package.json
{
"name": "create-react-app-fullstack",
"version": "1.0.11",
"version": "1.0.12",
"description": "Turn create-react-app into a fullstack app by adding Express and Sequelize",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -5,3 +5,2 @@ # create-react-app-fullstack

## Installation
<br/>

@@ -13,2 +12,4 @@ ```

<br/>
## Getting Started

@@ -27,37 +28,60 @@ <br/>

#### remember to seed the database!
<br/>
After the *fullstack* completes, run the command below to add dummy data to the database: `npm run seed`
<br/>
## Commands
<br/>
### seed
Before getting started, seed the database with dummy data by running: `npm run seed`
Before getting started, seed the database with dummy data by running:
```
npm run seed
```
<br/>
### start
<br/>
After the database is seeded, you should be all set. To enable front-end development with hot-reloading, use the same script as create-react-app: `npm run start`
After the database is seeded, you should be all set. To enable front-end development with hot-reloading, use the same script as create-react-app:
```
npm run start
```
<br/>
### fullstart
<br/>
To automate updates from back-end development, you can run the script below. The difference between this script and the one above: hot-reloading is disabled. Requires navigating to the localhost and refreshing the page: `npm run fullstart`
To automate updates from back-end development, you can run the script below. The difference between this script and the one above: hot-reloading is disabled. Requires navigating to the localhost and refreshing the page:
```
npm run fullstart
```
<br/>
### build
<br/>
To build deployment-ready, we use the same script as create-react-app: `npm run build`
To build deployment-ready, we use the same script as create-react-app:
```
npm run build
```
<br/>
### nodemon
<br/>
After this, you can test your back-end code on the built static files:
After this, you can test your back-end code on the built static files: `nodemon server`
```
nodemon server
```
<br/>

@@ -64,0 +88,0 @@

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