Project management tools like , Notion, Basecamp, Lark, Slack, Asana and Trello.
AI chatbot tools like ChatGPT, Grok, Perplexity, Claude, Gemini and Copilot.
Marketing analytics platforms like Google Analytics, Similarweb and Semrush.
CRM systems like HubSpot, Apollo.io Pipedrive, Zoho CRM, and Salesforce.
VPNs, SSO providers, and password managers like NordVPN, Okta, and LastPass.
Email marketing and campaign tools like MailerLite, Instantly, and Mailchimp.
Website builders, hosting tools like Hostinger, Webflow, Framer, and Shopify
HR and recruiting software like ATS platforms, BambooHR, Workday, and Lever.
Automate finances with confidence like Quickbooks, Stripe, Brex, and Mercury.
Design and editing tools like Figma, Canva, Adobe Creative Cloud, CapCut.
Workflow automation tools like Zapier, Make, Clay, and Reclaim.ai.
No-code and AI-native dev tools like Cursor, Windsurf, Lovable and Bubble.
Chat to find tools, compare options,
Discover the best-performing
Visit Subgrowth and gain advantage and revenue through real human presence for your brand to enable AI.
Industries we have supported successfully since 2023.
How we help to win in AI
.env
file in the project directory.NODE_ENV=development
MOCK_BACKEND=true
npm run dev:cloud
npm run dev:electron (optional, for electron app)
npm run dev:webpack
src/cloud/api/mock/mockHandler.ts
.{
"method": "get",
"pathname": "api/something",
"handler": ({ search }): GetSomethingResponse => {
return {
...something
}
}
}
method
, pathname
, and handler
with your desired configurations.npm run dev:cloud
: Run webpack for the cloud space.npm run dev:webpack
: Run webpack for the desktop app main window renderer.npm run dev:electron
: Run webpack for the desktop app main processor.npm run dev:mobile
: Run webpack for the mobile app.npm run lint
: Check lint errors.npm run format
: Attempt to fix lint errors automatically.npm test
: Run test script.npm run tsc
: Check type errors.npm run build:electron-production
: Build assets for the desktop app.npm run build:cloud-production
: Build assets for the cloud space.npm run build:mobile-production
: Build assets for the mobile app.npm start
: Run the desktop app with prebuilt assets.npm run meta
: Prepare metadata for desktop app building.npm run prepack
: Create desktop app installers without signing.npm run release
: Create desktop app installers for production and upload them to GitHub.