All Projects â†’ msavin â†’ MeteorCandy-meteor-admin-dashboard-devtool

msavin / MeteorCandy-meteor-admin-dashboard-devtool

Licence: other
The Fast, Secure and Scalable Admin Panel / Dashboard for Meteor.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to MeteorCandy-meteor-admin-dashboard-devtool

accounts-material-ui
Material-ui integration with std:accounts-ui
Stars: ✭ 17 (-66%)
Mutual labels:  meteor, accounts, users
awesome-blaze
🔥A curated list of awesome things related to Blaze
Stars: ✭ 29 (-42%)
Mutual labels:  meteor, meteorjs, blaze
Tabler React
React components and demo for the Tabler UI theme.
Stars: ✭ 1,830 (+3560%)
Mutual labels:  admin-dashboard, user-interface, admin-dashboard-ui
fragments
Organise your bookmarks into boards
Stars: ✭ 56 (+12%)
Mutual labels:  meteor, meteorjs, blaze
meteor-blaze-bs4
Generic Bootstrap 4 components library for Meteor Blaze.
Stars: ✭ 20 (-60%)
Mutual labels:  meteor, meteorjs, blaze
meteor-react-native
Meteor client for React Native matching Meteor Spec
Stars: ✭ 43 (-14%)
Mutual labels:  meteor, meteorjs
Meteor-logger
🧾 Meteor isomorphic logger. Store application logs in File (FS), MongoDB, or print in Console
Stars: ✭ 51 (+2%)
Mutual labels:  meteor, meteorjs
blaze-magic-events
A new way of binding event handlers to html elements for Meteor's Blaze.
Stars: ✭ 26 (-48%)
Mutual labels:  meteor, blaze
hypersubs
an upgraded version of Meteor subscribe, which helps optimize data and performance!
Stars: ✭ 13 (-74%)
Mutual labels:  meteor, meteorjs
Nosqlclient
Cross-platform and self hosted, easy to use, intuitive mongodb management tool - Formerly Mongoclient
Stars: ✭ 3,399 (+6698%)
Mutual labels:  meteor, meteorjs
stweet
Advanced python library to scrap Twitter (tweets, users) from unofficial API
Stars: ✭ 287 (+474%)
Mutual labels:  users, user
flow-router
🚦 Carefully extended flow-router for Meteor
Stars: ✭ 191 (+282%)
Mutual labels:  meteor, meteorjs
Kapella-Free-Bootstrap-Admin-Template
Free Dashboard template with Horizontal menu featuring Bootstrap 4.
Stars: ✭ 126 (+152%)
Mutual labels:  admin-dashboard, admin-dashboard-ui
svelte-meteor-data
Reactively track Meteor data inside Svelte components
Stars: ✭ 14 (-72%)
Mutual labels:  meteor, meteorjs
Meteor-flow-router-title
Change document.title on the fly within flow-router
Stars: ✭ 23 (-54%)
Mutual labels:  meteor, meteorjs
blaze-integration
Vue integration with Meteor's Blaze rendering engine.
Stars: ✭ 24 (-52%)
Mutual labels:  meteor, blaze
Fluent-Design-For-Web
Windows 10 Inspired UI For Web
Stars: ✭ 28 (-44%)
Mutual labels:  user-interface, user
setup-meteor
Set up your GitHub Actions workflow with a specific version of Meteor.js
Stars: ✭ 17 (-66%)
Mutual labels:  meteor, meteorjs
Meteor-logger-mongo
🍃 Meteor Logging: Store application log messages in MongoDB
Stars: ✭ 20 (-60%)
Mutual labels:  meteor, meteorjs
meteor-video-chat
Simple id based video calling in meteor
Stars: ✭ 33 (-34%)
Mutual labels:  meteor, blaze

Meteor Candy

The Fast, Secure and Scalable Admin Panel for Meteor.js

Manage your production application with Meteor Candy, the admin panel made just for Meteor. With tight integrations into Meteor's core packages, such as accounts and mongo, this package is the ultimate way to add an admin panel to your application. You can cover just about any feature you'd need with the built-in:

  • Account Management
  • Data Reports
  • Data Tables
  • Custom Functions
  • Settings

Meteor Candy comes pre-configured with features such as account impersonation, activity logging, and more. However, the real magic is when you configure it work with your application and collections. For more information, and a live demo, please visit the product website.

Getting Started

Meteor Candy can be installed in a few minutes, and configured in a few hours. A free Development Kit is available for you to try it locally. To add it to your app, just follow these directions:

  1. Copy the ./meteor-candy-config folder from this repository to your packages folder
    • You folder path should look like this: mymeteorapp/packages/meteor-candy-config
    • The package.js file path should look like this: mymeteorapp/packages/meteor-candy-config/package.js
  2. Install the configuration package, then the front-end package, then the core package
    • run meteor add meteor-candy-config meteorcandy:blaze meteorcandy:core
  3. Open your web app and press Control + D to launch Meteor Candy

Configuration Sample

Feel free to browse the ./meteor-candy-config folder to see configuration options and their associated documentation. Here is an example of how easy it is to configure a table. Meteor Candy will automatically set up pagination, search, sorting, and more. Meteor Candy will not release any additional data beyond what you specify in the fields array.

var subscriberData = {
  collection: "subscribers",
  label: "Subscribers",
  queries: [{
    label: "Subscribed Only",
    query: '{"active": true}',
  }, {
    label: "Unsubscribed Only",
    query: '{"active": false}',
  }],
  fields: [{
    field: "_id",
    label: "ID",
  }, {
    field: "email",
    label: "Email",
  }, {
    field: "active",
    label: "Active",
  },{
    field: "created",
    label: "Joined",
    sort: -1
  }]
}

Compared to yogiben:meteor-admin, gterrono:houston and related forks

Meteor Candy is an up-to-date and constantly updated solution. First, it uses carefully scoped code and dynamic imports to ensure no burden is added to your client or server. Second, it uses methods to retrieve data in a scalable and performant way. Finally, it's all about your configuration, rather than trying to guess its way through plug and play.

Premium Support

Every purchase of Meteor Candy comes with a free, one hour consultation. If you need additional help setting up Meteor Candy, or would like to have it done for you, please see Toy Shop.

License

Meteor Candy is a proprietary product with a custom license. It's free to use in development, but requires a paid license to be used in production. For more information, please visit the product website.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].