Software Alternatives & Reviews

Building an event ticketing application with Next.js and Appwrite

Vercel Hashnode Google AppWrite
  1. 1
    Vercel is the platform for frontend developers, providing the speed and reliability innovators need to create at the moment of inspiration.
    From the image below, I provided a name for the application and used an asterisk as the hostname. After deploying the application on Vercel, you can change the hostname to the URL provided by Vercel.

    #Developer Tools #Web Development Tools #App Deployment 519 social mentions

  2. A friendly and inclusive Q&A network for coders
    Recently, I built this application using Next.js and Firebase. Then, after learning about Appwrite Cloud and the ongoing hackathon on Hashnode. I thought to myself, why not give it a shot? 😁.

    #Web App #Social Media Tools #Software Engineering 120 social mentions

  3. 3
    Google Search, also referred to as Google Web Search or simply Google, is a web search engine developed by Google. It is the most used search engine on the World Wide Web
    Export const createEvent = async ( id, title, date, time, venue, description, note, flier, router ) => { const createDocument = async (flier_url = "https://google.com") => { try { const response = await db.createDocument( process.env.NEXT_PUBLIC_DB_ID, process.env.NEXT_PUBLIC_EVENTS_COLLECTION_ID, ID.unique(), { user_id: id, title, date, time, venue, description, note, slug: createSlug(title), attendees: [], disableRegistration: false, flier_url, } ); successMessage("Ticket created 🎉"); router.push("/dashboard"); } catch (error) { console.error("DB ERROR >>", error); errorMessage("Encountered an error ❌"); } }; if (flier !== null) { try { //👉🏻 upload image and ticket details } } else { await createDocument(); } };.

    #Search Engine #Internet Search #Web Search 3692 social mentions

  4. Appwrite provides web and mobile developers with a set of easy-to-use and integrate REST APIs to manage their core backend needs.
    Pricing:
    • Open Source
    Appwrite is a powerful open-source backend platform that enables you to create secured and scalable (web and mobile) applications. With Appwrite, you don't need to worry about the backend resources of your application because with Appwrite, you - "Build Fast. Scale Big. All in One Place.".

    #Developer Tools #Backend As A Service #REST API 167 social mentions

Discuss: Building an event ticketing application with Next.js and Appwrite

Log in or Post with