1.1.0 • Published 2 years ago

cra-template-react-moralis v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

CRA Template for react-moralis

This template is meant to help the users with the extra package configuration which is needed to make sure your react app work with moralis, react-moralis and web3uikit out of the box.

Quick Start

Installation

Npm

npx create-react-app your-app-name --template react-moralis
cd your-app-name

Yarn

yarn create react-app your-app-name --template react-moralis
cd your-app-name

Open the .env file and update the serverUrl and appId.

REACT_APP_MORALIS_APPLICATION_ID = xxxxx;
REACT_APP_MORALIS_SERVER_URL = xxxxx;

Usage

Npm

npm run start

Yarn

yarn run start

Start building your app.

The template uses scss for the styles but you can use css or css modules just by removing the index.scss file from index.js and importing your new style files

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
//import './index.scss'; // <-- remove this
import './index.css'; // import your new style file

import { MoralisProvider } from 'react-moralis';

const APP_ID = process.env.REACT_APP_MORALIS_APPLICATION_ID;
const SERVER_URL = process.env.REACT_APP_MORALIS_SERVER_URL;

ReactDOM.render(
  <MoralisProvider appId={APP_ID} serverUrl={SERVER_URL}>
    <App />
  </MoralisProvider>,
  document.getElementById('root')
);
1.1.0

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago