Code Monkey home page Code Monkey logo

argon-dashboard-react-nodejs's Introduction

version license GitHub issues open GitHub issues closed Join the chat at https://gitter.im/NIT-dgp/General Chat

Product Gif

Start your development with a Dashboard for Bootstrap 4, React, NodeJS and Reactstrap, made with create-react-app. It is open source, free and it features many components that can help you create amazing websites.

Fully Coded Components

Argon Dashboard React Nodejs is built with over 100 individual components, giving you the freedom of choosing and combining. All components can take variations in color, that you can easily modify using SASS files. You will save a lot of time going from prototyping to full-functional code, because all elements are implemented. This Dashboard is coming with pre-built examples, so the development process is seamless, switching from our pages to the real website is very easy to be done. Every element has multiple states for colors, styles, hover, focus, that you can easily access and use.

Rest API

Get connected to the real world with a fully functional API made in NodeJS, containing multiple endpoints for managing the platform, each one of them being well documented and easily configurable.

Complex Documentation

Each element is well presented in a very complex documentation. You can read more about the idea behind this dashboard here. You can check the components here and the foundation here.

Example Pages

If you want to get inspiration or just show something directly to your clients, you can jump start your development with our pre-built example pages. You will be able to quickly set up the basic structure for your web project.

Table of Contents

Demo

Dashboard Page Icons Page Tables Page Maps Page
Dashboard Page Icons Page Tables Page Maps Page
Register Page Login Page Page Profile Page
Login Page Login Page Page Profile Page

View More

Quick start

  • assume you have npm and Mongo DB installed
  • Download from Github.
  • Download from Creative Tim.
  • Clone the repo: git clone https://github.com/creativetimofficial/argon-dashboard-react-nodejs.
  • npm install in both front-end and back-end folder
  • npm run build in front-end folder and then move the build folder in back-end -> this is for production mode
  • nodemon in backend folder and the server will start
  • for dev env run both React and Node server
  • npm start in front-end
  • nodemon in back-end

Documentation

The documentation for the Argon Dashboard React with Node JS is hosted at our website.

File Structure

Within the download you'll find the following directories and files:

Argon Dashboard React Nodejs
.
├── CHANGELOG.md
├── Documentation
│   └── documentation.html
├── ISSUE_TEMPLATE.md
├── LICENSE
├── README.md
├── back-end
│   ├── README.md
│   ├── app.js
│   ├── b78de_ab899_1576205276_51a83e5f3b2afb4a72888806732c61fe.crt
│   ├── b78de_ab899_457b6766b38e3a90a3a5c80685b6dd43.key
│   ├── config
│   │   ├── config.js
│   │   ├── crons.js
│   │   ├── keys.js
│   │   ├── passport.js
│   │   └── safeRoutes.js
│   ├── models
│   │   ├── activeSession.js
│   │   └── user.js
│   ├── package-lock.json
│   ├── package.json
│   └── routes
│       └── users.js
└── front-end
    ├── README.md
    ├── gulpfile.js
    ├── jsconfig.json
    ├── package-lock.json
    ├── package.json
    ├── public
    │   ├── apple-icon.png
    │   ├── favicon.ico
    │   ├── index.html
    │   └── manifest.json
    └── src
        ├── assets
        │   ├── css
        │   │   ├── argon-dashboard-react.css
        │   │   ├── argon-dashboard-react.css.map
        │   │   └── argon-dashboard-react.min.css
        │   ├── fonts
        │   │   ├── nucleo.eot
        │   │   ├── nucleo.ttf
        │   │   ├── nucleo.woff
        │   │   └── nucleo.woff2
        │   ├── img
        │   │   ├── brand
        │   │   │   ├── argon-react-white.png
        │   │   │   ├── argon-react.png
        │   │   │   ├── blue.png
        │   │   │   ├── favicon.png
        │   │   │   └── white.png
        │   │   ├── icons
        │   │   │   └── common
        │   │   │       ├── github.svg
        │   │   │       └── google.svg
        │   │   └── theme
        │   │       ├── angular.jpg
        │   │       ├── bootstrap.jpg
        │   │       ├── profile-cover.jpg
        │   │       ├── react.jpg
        │   │       ├── sketch.jpg
        │   │       ├── team-1-800x800.jpg
        │   │       ├── team-2-800x800.jpg
        │   │       ├── team-3-800x800.jpg
        │   │       ├── team-4-800x800.jpg
        │   │       └── vue.jpg
        │   ├── plugins
        │   │   └── nucleo
        │   │       ├── css
        │   │       │   ├── nucleo-svg.css
        │   │       │   └── nucleo.css
        │   │       └── fonts
        │   │           ├── nucleo-icons.eot
        │   │           ├── nucleo-icons.svg
        │   │           ├── nucleo-icons.ttf
        │   │           ├── nucleo-icons.woff
        │   │           └── nucleo-icons.woff2
        │   └── scss
        │       ├── argon-dashboard
        │       │   ├── bootstrap
        │       ├── argon-dashboard-react.scss
        │       └── react
        │           ├── _buttons.scss
        │           ├── _mixins.scss
        │           ├── _navbar-dropdown.scss
        │           ├── _navbar.scss
        │           ├── _tables.scss
        │           ├── bootstrap
        │           │   └── _spinners.scss
        │           ├── plugins
        │           │   └── _plugin-react-datetime.scss
        │           └── react-differences.scss
        ├── components
        │   ├── Footers
        │   │   ├── AdminFooter.js
        │   │   └── AuthFooter.js
        │   ├── Headers
        │   │   ├── EditHeader.js
        │   │   ├── Header.js
        │   │   └── UserHeader.js
        │   ├── Navbars
        │   │   ├── AdminNavbar.js
        │   │   └── AuthNavbar.js
        │   ├── PrivateRoute
        │   │   ├── AuthRoutes.js
        │   │   └── PrivateRoute.js
        │   └── Sidebar
        │       └── Sidebar.js
        ├── config.js
        ├── index.js
        ├── layouts
        │   ├── Admin.js
        │   └── Auth.js
        ├── network
        │   └── ApiAxios.js
        ├── routes.js
        ├── variables
        │   └── charts.js
        └── views
            ├── Index.js
            └── examples
                ├── ConfirmEmail.js
                ├── ConfirmPassword.js
                ├── EditProfile.js
                ├── Icons.js
                ├── Login.js
                ├── Maps.js
                ├── Profile.js
                ├── Register.js
                ├── ResetPassword.js
                ├── ResetPasswordSuccess.js
                ├── Tables.js
                └── UsersTable.js

Browser Support

At present, we officially aim to support the last two versions of the following browsers:

Resources

Reporting Issues

We use GitHub Issues as the official bug tracker for the Argon Dashboard React with Node JS. Here are some advices for our users that want to report an issue:

  1. Make sure that you are using the latest version of the Argon Dashboard React with Node JS. Check the CHANGELOG from your dashboard on our website.
  2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
  3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

Licensing

Useful Links

Social Media

Twitter: https://twitter.com/CreativeTim?ref=creativetim

Facebook: https://www.facebook.com/CreativeTim?ref=creativetim & https://www.facebook.com/projectdatadevelopement/

Dribbble: https://dribbble.com/creativetim?ref=creativetim

Instagram: https://www.instagram.com/CreativeTimOfficial?ref=creativetim

argon-dashboard-react-nodejs's People

Contributors

dragosct avatar marqbeniamin avatar projectdatadevelopment avatar radu1122 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

argon-dashboard-react-nodejs's Issues

[Feature Request] Purchasing the creative Tim Club Vs Celebration Offer

What is your enhancement?

Hello,
raising this as requested by Sajad on twitter.

I am planing to purchase the templates and not able to decide what is the best one;
Does the creative Club includes everything that the celebration offer does?
I am looking for the React Templates with Note Js backend.

Thanks

React npm install issue

Hi, I have an issue from react side.

I can't run npm install on react side.

Logs:

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/react
npm ERR! react@"17.0.2" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.3.0" from [email protected]
npm ERR! node_modules/react-bootstrap-table2-paginator
npm ERR! react-bootstrap-table2-paginator@"2.1.2" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /Users/kaanata/.npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR! /Users/kaanata/.npm/_logs/2022-01-25T20_43_51_843Z-debug.log

Node: v16.13.2
React: 8.1.2
MacOS: 12.1

[Bug] unable to resolve dependency tree during the initial npm install

Version

1.0.0

Reproduction link

https://github.com/VictorHenriquez/argon-dashboard-pro-react-nodejs-v1.0.0.git

Operating System

Windows 11

Device

PC

Browser & Version

Chrome V119.0.6045.200

Steps to reproduce

  1. Step 1: Donwload the project directly by your page.
  2. Step 2:Unzzip the project
  3. Step 3:Open the project in to visual code, open the terminal and go to the backend folder.
  4. Step 4:Run npm install

What is expected?

install all the node libraries listed in the original pro project.

What is actually happening?

npm install
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/mongoose
npm ERR! mongoose@"^5.9.9" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer mongoose@"^4.9.0" from [email protected]
npm ERR! node_modules/mongoose-unique-validator
npm ERR! mongoose-unique-validator@"^1.0.5" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR!


Solution

Additional comments

I´m using node 18.18.2 and I just make the first install. Please I need your help here!!!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.