Low Code Shopify App Development using SmoothCode
We’ve all been there, knees deep into Shopify app development documentation with a million browser tabs open and struggling to make sense of what we’ve just read. Wondering if there’s an easy way to do this.


We’ve all been there, knees deep into Shopify app development documentation with a million browser tabs open and struggling to make sense of what we’ve just read. Wondering if there’s an easy way to do this.
Well, Shopify App developers, there is an easy way to do this.
- Why build the authentication for your app from scratch spending hours or sometimes weeks when you can do that in less than a minute?
- Why devour the Shopify Billing documentation when you can set that up in minutes?
- Why go through webhooks and access scopes documentation to see what access scopes you need for the webhooks you require when you can do this automatically?
- Why keep looking at emails and partner dashboard to see who installed / unininstalled your app or upgraded / downgraded your plan when you can set that up in minutes?
Let’s dive deeper in the world of SmoothCoding where you can do all of this without writing a single piece of code.
Let’s create a Shopify app that would listen to a store’s order-create webhook and shows the list of all the orders for that stores
Here’s a list of things that will be handled by SmoothCode, our low code platform
- Authentication: App installation from Shopify
- Pricing: We will make it a paid app worth $10
- Webhook Registration: We’ll register the order-create webhook
- Access Scopes: In order to register order-create webhook, we need read_order permission
- Slack Alerts: We’ll be notified about the installs and uninstalls on Slack
Here’s a list of things for which we will be writing the code
- Show Order List from DB
- Add Order to DB when an order is created
We will start with writing our application logic and then move on to setting up the app on SmoothCode
We’ll create this application using the following techstack:
- NodeJS + Express
- MongoDB
- Ngrok
Let’s start with out application:
Create a new directory with the name of the app
- Start an npm Project and install few libraries
- We’ll create an .env file
- To insert Orders in our DB, We’ll create Order Table Schema
- Create a new directory "app" and inside it create schema and create a new file order.js
- Add the following code in order.js
- To show the list of orders, We’ll create our Order Listing Page now
- Create a new directory views in app directory and create a new file getOrderList.js
- We are using bootstrap to make the table look presentable, add the following code in getOrderList.js
- Let’s create our helper methods to Insert Order to DB and Get Orders from DB
- Create a directory services in app and create files getAllOrders.js and insertOrder.js
- Let’s add the following code in insertOrder.js
- Let’s add the following code in getAllOrders.js
- Finally we’ll create our routes and index file
- Create a new file index.js at the root of the project
- Require all the packages
- Require all the required methods
- Intialize app using express and use express.json() to parse JSON POST data
- Let’s start server and connect to mongo
- Let’s add our routes in the same index.js
And that is it! We’re done with the app!
Now we'll:
- Start Mongo Server
- Start Node Server
- Open ngrok tunnel to port 8081
- For this article we'll assume the domain to be https://low-code-order-dashboard.ngrok.io
Let's move onto setting up our App on SmoothCode
- Let’s sign up on SmoothCode using Github/Google

- Once we are signed up. Let’s create a new App by clicking the + button

- Enter the name for your app and press “Continue”. We’ll name it “Low Code Order Dashboard”
- Create an app on the Partner Dashboard and copy the Shopify Credentials into SmoothCode

- Click on “Start Building” and That is it. Your application is setup now. Let’s add a Pricing for our App now.
- Add your order-listing URL with domain in the “App Dashboard”

- Navigate to “App Pricing” and click on “Add Pricing Plan”

- Add in your Pricing Details as per your requirements like this and click on “Save”

- Navigate to “Webhooks” and click on “Add Webhooks”
- Select order/create and add order-create-webhook URL with Domain

- Navigate to “Access Scopes” and Read Order scope should automatically be selected since it is needed to register Order Create Webhook

- Navigate to “Slack Alerts” and click on “Add Slack Alert”.
- Add alerts for Installs and Uninstalls by adding Slack Webhook URLs

Now our app on SmoothCode is also setup. Let’s link our application with SmoothCode
- Navigate to “App Settings” at the Top Right

- Copy “Project ID”, “SmoothCode client ID” and “SmoothCode client secret”

- Paste them in our .env file and restart the server
- Navigate to “Test Stores” and add your Test Stores so that you’re not charged for the payment

And our app is completed!
Let’s Test this app
- Install it on a dev store.

- Select a Dev store from the List. You will be redirected to the Permissions Page.
- Scroll to the bottom of the page to see that the app is asking for “Read Orders” permission. Install the app by clicking “Install unlisted app”

- You’ll be redirected to the “Payments” Page. The plan details should match the plan created on SmoothCode. Click on “Approve”

- You’ll receive a Notification on Slack about the Install

- Place an Order on the Store and You will be able to see the order on Ap

That is it! No need to write code for authentication, pricing, slack alerts, webhooks into your application. Leave all of that to SmoothCode. Focus on your application.
It is that easy to build an app using SmoothCode
Signup on SmoothCode today and start building Shopify app at lightening pace and without needing to keep up with Shopify changes.
You can reach out to us on LinkedIn, Twitter or hello@smoothcode.io