New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

astro-ssr-spa

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

astro-ssr-spa

** warning **

  • 2.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Astro with HTMX, Daisy UI, Tailwind CSS, and MongoDB Template by DTS

** warning **

-This project is currently being uploaded-

This Astro single-page application (SPA) template is designed to help you build robust and scalable web applications quickly. It includes integrated support for HTMX, Daisy UI, and Tailwind CSS to create dynamic, responsive user interfaces. Perfect for building e-commerce sites, blogs, or portfolios, this template features comprehensive session management with mongo-connect and MongoDB integration, providing a secure and efficient development environment.

Table of Contents

Key Features

  • Astro Single-Page Application Template: This template leverages Astro for building a single-page application with server-side rendering (SSR) capabilities, ensuring a fast and optimized user experience.

  • Dynamic User Interfaces: Integrated with HTMX, Daisy UI, and Tailwind CSS, this template allows for creating dynamic, responsive user interfaces that enhance the visual appeal and functionality of your site.

  • Comprehensive Session Management: Features robust session management implemented using mongo-connect, suitable for managing user sessions in both local and community versions of MongoDB.

  • E-Commerce Site Template with SSR Integration: Combines Astro’s SPA capabilities with Express and Node.js middleware for a seamless and efficient e-commerce site setup.

  • Pre-Configured Development Environment: Comes with a pre-configured development environment that includes essential tools and scripts, making it easy to start building your project without extensive setup.

Use Cases

This Astro template is ideal for various types of web projects, including:

  • Build an E-Commerce Platform with Astro and MongoDB: Create a fully-featured e-commerce site with product management, secure checkout, and user authentication, leveraging Astro’s SSR and MongoDB’s flexible database options.

  • Create a Dynamic Blog Using HTMX and Daisy UI: Develop a blog with interactive features and modern UI components, managing content through a headless CMS and ensuring a smooth user experience with HTMX and Daisy UI.

  • Design a Professional Portfolio with Tailwind CSS: Showcase your work and achievements with a responsive and stylish portfolio, utilizing Tailwind CSS for customizable and attractive design elements.

  • Integrate with Any Headless CMS: Connect this template with any headless CMS for flexible content management, allowing for easy updates and dynamic content delivery across various types of websites.

🛠️ Installation and Usage

To get started with this template, you can use either Bun or npm. Choose the method that best fits your environment:

  1. Initialize the Project: Create a new project using the Astro CLI:

    • With Bun:
      bunx create-astro@latest DTS --template dansasser/astro-ssr-spa
      
    • With npm:
      npm create-astro@latest DTS --template dansasser/astro-ssr-spa
      
      or
      npm i astro-ssr-spa
      cp -r node_modules/astro-ssr-spa/* .
      
  2. Install Dependencies: Set up the project dependencies using your preferred package manager:

    • With Bun:
      bun install
      
    • With npm:
      npm install
      
  3. Configure Your Database: Set up a MongoDB instance (local or cloud-based) and configure the necessary environment variables for session management.

  4. Run the Application: Start the development environment with:

    • With Bun:
      bun dev:start
      
    • With npm:
      npm run dev:start
      

Custom Logger

Our Astro SSR SPA template includes a custom logger designed to handle traffic, error, and Content Security Policy (CSP) reports. This logger provides detailed and colorful output in both file logs and the server console, making it easier to track and debug issues. It uses the preryConsole library to add color and highlight different sections of the logs, enhancing readability and making it fully customizable.

Features

  • Traffic Logging: Records incoming traffic details, including request paths, methods, and response statuses.
  • Error Logging: Captures error messages, stack traces, and context for troubleshooting.
  • CSP Reports: Logs Content Security Policy violations to help monitor and enforce security policies.
  • Color Highlighting: Utilizes preryConsole to apply color and formatting to various log sections, improving visual distinction.
  • Customizable: Allows customization of log colors and the information included in each log entry.

Customization

You can customize the logger by modifying its configuration file or directly in the code. Here’s how:

  • Colors: Adjust the color scheme used for different log sections (e.g., traffic, errors, CSP reports) by changing the color codes in the logger configuration.
  • Log Information: Customize the information included in the logs by updating the logger's format settings. You can choose what details to log and their arrangement.

Usage

To use the custom logger, simply integrate it into your application’s request handling and error management processes. Here's a basic example of how to set it up: (This area need updated)

const customLogger = require('./path/to/customLogger')

// Initialize the logger with custom settings
customLogger.initialize({
   colorScheme: {
      traffic: 'green',
      errors: 'red',
      csp: 'yellow'
   },
   logToFile: true,
   logToConsole: true
})

// Log a traffic entry
customLogger.logTraffic(req)

// Log an error
customLogger.logError(err)

// Log a CSP report
customLogger.logCSP(cspReport)

For more detailed customization options and usage instructions, refer to the Custom Logger Documentation.

Examples

  • Traffic Log:

    [2024-08-26 10:00:00] [INFO] [green] GET /api/data - 200 OK
    
  • Error Log:

    [2024-08-26 10:05:00] [ERROR] [red] TypeError: Cannot read property 'foo' of undefined
        at /path/to/file.js:10:20
    
  • CSP Report:

    [2024-08-26 10:10:00] [CSP] [yellow] Blocked script-src violation on https://example.com
    

Concurrently and Wait-On with Microsoft DevTunnel

concurrently and wait-on are powerful tools used together to manage and synchronize multiple processes in your development workflow.

  • concurrently: This tool allows you to run multiple commands simultaneously in a single terminal. In your setup, it is used to run both the server and the DevTunnel setup concurrently, ensuring that both processes are started and managed together.

  • wait-on: This tool is used to wait for specific resources or conditions before proceeding with other tasks. In your setup, wait-on monitors a configuration file (waiton.json) to ensure that the server is up and running before starting the DevTunnel. This ensures that the tunnel is only established when the server is ready, avoiding potential connection issues.

Run it:

  • With Bun:
    bun serve:tunnel
    
  • With npm:
    npm serve:tunnel
    

Here’s how it works in your workflow:

  1. Start the Server and DevTunnel:

    • concurrently runs both the server and the DevTunnel commands at the same time.

    • wait-on is used to monitor the server's readiness, based on the configuration in waiton.json.

  2. Server Initialization:

    • wait-on checks if the server is up by looking for a specific condition defined in waiton.json.
  3. DevTunnel Setup:

    • Once the server is confirmed to be running, concurrently continues with the DevTunnel setup, exposing your local server to the internet through a secure, temporary URL.

This setup ensures a smooth development experience by coordinating server startup and tunnel creation, making it easier to test and share your local application.

Microsoft DevTunnel

Microsoft DevTunnel provides a secure, customizable tunnel to your local development environment. It’s particularly useful for exposing your local server to the internet, which is essential for tasks like remote testing and integration.

For a detailed guide on installing and using Microsoft DevTunnel, you can refer to the official Microsoft DevTunnel documentation.

Note: The dev tunnel listens for the server to start by way of a waiton.json configuration and then runs concurrently afterwards.

  1. Install DevTunnel:

    npm install -g devtunnel
    
  2. Start DevTunnel: Expose a local port (e.g., port 3000):

    devtunnel host 3000
    
  3. Access the Tunnel: DevTunnel will generate a URL to access your local server from anywhere.

For detailed instructions and additional usage options, visit the Microsoft DevTunnel documentation.

📁 Project Structure

Inside of your project, you'll see the following folders and files:

\
├── .astro\
│   ├── icon.d.ts
│   └── settings.json
├── config\
│   ├── devtunnel-fallback.js
│   └── waiton.json
├── db\
│   ├── pages.json
│   ├── social.json
│   └── test.js
├── .github\
│   └── FUNDING.yml
├── interfaces\
│   ├── PageData.ts
│   └── SocialData.ts
├── lib\
│   ├── img\
│   │   └── placeholder-image.png
│   ├── DateTime.js
│   ├── ExpressStarted.js
│   ├── HeaderPolicy.js
│   ├── helper.js
│   ├── Logger.js
│   └── PrettyConsole.js
├── log\
│   ├── csp.log
│   ├── error.log
│   └── traffic.log
├── public\
│   ├── assets\
│   │   ├── fonts\
│   │   │   ├── FasterOne-eKem.ttf
│   │   │   └── index.php
│   │   └── img\
│   │       ├── dan.png
│   │       └── picaLogo.png
│   ├── css\
│   │   ├── fav5\
│   │   │   ├── all.css
│   │   │   ├── all.min.css
│   │   │   ├── free.css
│   │   │   └── free.min.css
│   │   ├── all.css
│   │   ├── all.min.css
│   │   ├── flowbite.mini.css
│   │   └── svg-with-js.min.css
│   ├── js\
│   │   ├── all.min.js
│   │   ├── contact.js
│   │   └── main.js
│   └── favicon.svg
├── scripts\
│   └── image.converter.py
├── src\
│   ├── components\
│   │   ├── forms\
│   │   │   └── Basic.Form.astro
│   │   ├── inputs\
│   │   │   ├── buttons\
│   │   │   │   ├── BaseDaisyUI.astro
│   │   │   │   └── Theme_01.astro
│   │   │   ├── fileUpload\
│   │   │   │   └── Theme_01.astro
│   │   │   ├── selects\
│   │   │   │   └── Theme_01.astro
│   │   │   ├── text\
│   │   │   │   ├── Basic_01.astro
│   │   │   │   ├── Basic_03.astro
│   │   │   │   ├── Button.astro
│   │   │   │   ├── Error.astro
│   │   │   │   ├── Round.astro
│   │   │   │   ├── Success.astro
│   │   │   │   └── Theme_01.astro
│   │   │   ├── textarea\
│   │   │   │   └── Theme_01.astro
│   │   │   ├── Basic.astro
│   │   │   └── basic.input.jsx
│   │   ├── navigation\
│   │   │   ├── Drawer-Nav.astro
│   │   │   ├── Side-Child.astro
│   │   │   ├── Side-Nav.astro
│   │   │   ├── Side-No-Child.astro
│   │   │   └── Side-With-Child.astro
│   │   ├── Card.astro
│   │   ├── Footer.astro
│   │   └── Product.card.astro
│   ├── functions\
│   │   ├── checkReferer.ts
│   │   ├── ContryNames.ts
│   │   ├── GetData.ts
│   │   ├── GetSiteData.ts
│   │   ├── host-only-redirect.js
│   │   ├── IDGen.ts
│   │   ├── pageLoader.ts
│   │   ├── PostData.ts
│   │   └── URLFilter.ts
│   ├── icons\
│   │   └── *.svg
│   ├── layouts\
│   │   └── Layout.astro
│   ├── middleware\
│   │   ├── auth.ts
│   │   ├── index.ts
│   │   └── validate.ts
│   ├── pages\
│   │   ├── content\
│   │   │   ├── about.astro
│   │   │   ├── apparel.astro
│   │   │   ├── contact.astro
│   │   │   ├── home.astro
│   │   │   └── products.astro
│   │   ├── icons.astro
│   │   └── index.astro
│   ├── utils\
│   │   ├── fa-icons.json
│   │   ├── fa-v5-icons.json
│   │   └── icons.json
│   └── env.d.ts
├── styles\
│   ├── all.css
│   ├── all-min.css
│   ├── contactCustom.css
│   ├── flowbite.mini.css
│   ├── global.css
│   └── svg-with-js.min.css
├── types\
│   └── SiteData.ts
├── .vscode\
│   ├── extensions.json
│   └── settings.json
├── astro.config.mjs
├── .env.example
├── .gitignore
├── LICENSE
├── package.json
├── package-lock.json
├── .prettierrc
├── README.md
├── server.mjs
├── tailwind.config.mjs
└── tsconfig.json

Astro Project Structure

This section provides an overview of the project's directory structure and key components, organized to help you quickly build and scale your e-commerce site. Understanding this structure will enable you to navigate and utilize the Astro SSR SPA template effectively. Here’s a breakdown of the key directories and their roles:

Root Directory
  • src/: The primary directory for your Astro project code, including pages, components, and styles. Astro looks for .astro or .md files here to determine routes and page content.

    • src/components/: Contains reusable UI components compatible with Astro and other frameworks like React, Vue, Svelte, or Preact.
    • src/layouts/: Defines the layout structure for your pages, including headers, footers, and other consistent elements.
    • src/pages/: Houses your site’s pages. Astro generates routes based on the filenames of .astro or .md files in this directory.
    • index.astro
    • Description: The index.astro file is the main container for the single-page application (SPA). It sets up the primary layout and manages routing within the application.
    • Usage: This file initializes the SPA structure and dynamically renders content based on user interactions.
    <!-- Example content for index.astro -->
    <html>
      <head>
        <title>Astro SSR SPA</title>
      </head>
      <body>
        <!-- Main layout and dynamic content will be loaded here -->
        <div id="app">
          <!-- HTMX will load content into this container -->
        </div>
      </body>
    </html>
    
  • content/

    • Description: The content directory stores all the pages for the application. HTMX is used to dynamically load these pages into the SPA.
    • Usage: Place your individual page files in this directory. HTMX will handle the dynamic loading of these pages based on user interactions.
    <!-- Example page in content directory -->
    <!-- content/home.astro -->
    <div>
       <h1>Welcome to the Home Page</h1>
       <p>This is the main content of the home page.</p>
    </div>
    
Additional Directories
  • lib/

    • Description: Contains essential server functions used by the server.mjs entry point, enabling server-side functionality and integration.
    • Usage: Place server-side functions and utilities here that are used across different parts of the application.
  • types/ and interfaces/

    • Description: These directories are used to store TypeScript types and interfaces.
    • Usage: Keep TypeScript definitions outside the src directory for enhanced security and better code organization.
  • public/

    • Description: The public directory holds static assets that do not need processing or compilation. Files placed here, such as images, fonts, and other media, are served directly to the browser.
    • Usage: Use this directory for any static files that should be accessible via URL, like logos, background images, and downloadable files. These assets are referenced in your project using relative paths.
  • styles/

    • Description: The styles directory contains global CSS files and configuration for utility-first CSS frameworks like Tailwind CSS.
    • Usage: Store your global styles, CSS variables, and Tailwind configurations in this directory to ensure a consistent design language across the entire site. This directory is crucial for maintaining a cohesive look and feel throughout your application.
Configuration Files
  • package.json

    • Description: Contains metadata about the project and dependencies.
    • Usage: Manage project dependencies and scripts from this file.
  • astro.config.mjs

    • Description: Configuration file for Astro settings.
    • Usage: Customize Astro's build and development settings.

Why This Structure Matters

The organization provided by Astro ensures modularity and maintainability, allowing for easy updates and extensions. Each directory serves a specific purpose, helping you manage different aspects of your project efficiently.

🧞 Commands

All commands are run from the root of the project, from a terminal:

CommandActionnpm Commandbun Command
Install dependenciesInstalls dependenciesnpm installbun install
Start dev serverStarts the Astro development servernpm run devbun dev
Build and start serverBuilds the project and starts the servernpm run dev:startbun dev:start
Start server onlyStarts the server without rebuildingnpm run start:serverbun start:server
Serve with tunnelStarts the server and dev tunnel simultaneouslynpm run serve:tunnelbun serve:tunnel
Build for productionBuild your production site to ./dist/npm run buildbun build
Preview your buildPreview your build locally, before deployingnpm run previewbun preview
Run Astro CLI commandsRun CLI commands like astro add, astro checknpm run astro ...bun astro ...
Get Astro CLI helpGet help using the Astro CLInpm run astro -- --helpbun astro -- --help

👀 Why Choose This Template?

  • Optimized for Performance: Benefit from Astro’s efficient rendering capabilities and fast load times.

  • Enhanced Interactivity: Utilize HTMX for building highly interactive web applications with minimal client-side JavaScript.

  • Flexible Design Options: Easily customize your application with Tailwind CSS and Daisy UI.

  • Secure and Scalable: Manage sessions securely and scale your app with flexible database options.

Explore the Astro with HTMX, Daisy UI, Tailwind CSS, and MongoDB Template by DTS to build modern, high-performance web applications. Get started today and harness the best tools in web development to create exceptional user experiences.


Resources


Contributing

We welcome contributions to this project! If you have suggestions, bug reports, or would like to contribute code, please follow these steps: (Still need to add this part)

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Commit your changes (git commit -am 'Add new feature').
  4. Push to the branch (git push origin feature-branch).
  5. Create a new Pull Request.

For more details, check out our CONTRIBUTING.md file.

License

This project is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Keywords

FAQs

Package last updated on 27 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc