Devlive 开源社区 本次搜索耗时 0.713 秒,为您找到 336 个相关结果.
  • Tailwind CSS 开发环境搭建和工具链配置

    1. 必备环境准备 Node.js (v14.0.0 或更高版本) npm 或 yarn 包管理器 代码编辑器(推荐 VS Code) 2. 项目初始化方式 方式一:在新项目中使用 # 创建项目目录 mkdir my - tailwind - project cd my - tailwind - project # 初始化 pack...
  • Numeric Functions

    1016 2024-06-24 《Apache AGE 0.6.0》
    rand abs ceil floor round sign rand rand() returns a random floating point number in the range from 0 (inclusive) to 1 (exclusive); i.e.[0,1). The numbers returned follow ...
  • GitHub 趋势日报 (2025年04月04日)

    📈 今日整体趋势 Top 10 📊 分语言趋势 Top 5 Rust Go TypeScript C++ MDX PHP Ruby Java HTML C 本日报由 TrendForge 系统生成 https://trendforge.devlive.org/ 📈 今日整体趋势 Top 10 排名 项目名称 项...
  • Procedures

    1012 2025-03-11 《Apache Iceberg 1.8.1》
    Spark Procedures To use Iceberg in Spark, first configure Spark catalogs . Stored procedures are only available when using Iceberg SQL extensions in Spark 3. Usage Procedures c...
  • Predicate Functions

    994 2024-06-24 《Apache AGE 0.6.0》
    Exists(Property) Exists(Path) Predicates are boolean functions that return true or false for a given set of input. They are most commonly used to filter out subgraphs in the WHE...
  • User defined functions

    991 2024-06-24 《Apache AGE 0.6.0》
    Users may add custom functions to AGE. When using Cypher functions, all function calls with a Cypher query use the default namespace of: ag_catalog . However if a user wants to us...
  • Tailwind CSS 企业级后台系统开发

    本节将介绍如何使用 Tailwind CSS 开发一个功能完整的企业级后台管理系统,包括布局设计、组件开发、主题定制等方面。 系统布局 布局框架 // components/layout/AdminLayout.tsx import { useState } from 'react' ; interface AdminL...
  • 第二节:开发环境搭建 - 工具链与配置

    学习目标 为什么需要完整的开发环境? 开发环境概览 安装Node.js和npm 创建项目并初始化 安装Vite作为构建工具 安装Tailwind CSS及其依赖 初始化Tailwind CSS配置 配置项目结构 创建基础HTML文件 创建主JavaScript文件 自定义Tailwind配置 配置npm脚本 配置Vite 加入常用...
  • SKIP

    978 2024-06-24 《Apache AGE 0.6.0》
    Introduction Skip first three rows Return middle two rows Using an expression with SKIP to return a subset of the rows SKIP defines from which record to start including the r...
  • Tailwind CSS 组件库开发实战

    开发一个基于 Tailwind CSS 的组件库不仅能提高团队开发效率,还能确保产品的设计一致性。本节将详细介绍如何从零开始构建一个专业的组件库。 !!! note 我们使用 React 来做项目相关的演示。 !!! 项目初始化 基础配置 # 创建项目 mkdir my - component - library cd my - co...