I'm new to JAMstack development, so this question arose. I found only one example of using Netlify CMS for e-commerce store: https://www.fullstackrocket.com/products/gatsby-ecommerce-netlify-cms
is it correct to use "Netlify CMS" as cms for an e-commerce store?
583 views Asked by Kipol At
1
There are 1 answers
Related Questions in E-COMMERCE
- Magento 1.9.1.1 Coupon Code is Not Valid
- Can't Update Stock Quantity on Single Product in Magento Admin
- Meteor JS: Shopping Cart Without Login - session id, etc
- Updating fields of model using forms and views on Django 1.7
- 403 Error when trying to remove products from Cart
- Opencart Admin Inaccessible
- show detail product in online shop (codeigniter)
- (Database design). Product attributes
- Mailchimp Ecommerce360 Javascript Implementation
- Does a Classic Analytics Ecommerce Data Layer work with Universal Analytics?
- Magento custom Upsell image not showing
- Google Analytics Enhanced Ecommerce doesn't Track Price
- Flipkart or Snapdeal like Payment Method in nopCommerce 3.5
- Dx trouble writing output: already prepared... - Error in console
- Is it a good practise store the checkout steps fields in php $_SESSION?
Related Questions in NETLIFY-CMS
- Gatsby Plugin Netlify CMS does not work with TypeScript?
- How to set media_folder and public_folder in Netlify CMS when not using static site generator?
- Embedding a youtube video in markdown field in Netlify CMS
- Netlify-cms existing collection items are not displayed even if github request returns item
- Gatsby + Netlify CMS - error Your site's "gatsby-node.js" must set the page path when creating a page
- How to add 'slug' tag automatically in markdown files using NetlifyCMS and Gatsby?
- Netlify Deploy: 12:43:01 AM: Build failed due to a user error: Build script returned non-zero exit code: 2
- Multiple Relation Item in Netlify CMS
- Is it possible to add gatsby blog on a subdomain to pre existing gatsby site?
- Github - Take check status and update commit status
- How to edit Hugo content files directly in content root folder
- Netlify CMS not saving hidden fields
- Serve static image using netlify?
- `gatsby build` works locally, but not on netlify CMS
- is it correct to use "Netlify CMS" as cms for an e-commerce store?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Netlify CMS is great for managing and editing content that is stored in your git repository alongside your code as yaml, toml, json, or markdown files.
If it's a good choice for your usecase depends how you want to build your e-commerce store:
If you build your site and online store from scratch with a site generator (like gatsby, nextjs, hugo, jekyll...) and want to store your product information in your git repo, Netlify CMS could be a good choice.
If you use a site generator but manage your products in a proprietary e-commerce platform like Shopify, you could use Netlify CMS for managing other pages on your website or your blog
I checked Fullstack Rocket here and here, there are no updates on their blog since April 2020, so I would ask if their products are up to date.