Try our Chrome extension
Easily add the current web-page from your browser directly into your changedetection.io tool, more great features coming soon!Changedetection.io needs your support!
You can help us by supporting changedetection.io on these platforms;
- Rate us at AlternativeTo.net
- Star us on GitHub
- Follow us at Twitter/X
- G2 Software reviews
- Check us out on LinkedIn
- And tell your friends and colleagues :)
The more popular changedetection.io is, the more time we can dedicate to adding amazing features!
Many thanks :)
changedetection.io team
Ainda não segundos atrás
False
Ainda não segundos atrás
Texto disparador Texto ignorado Texto bloqueado
há 16 horas
Skip to content
Navigation Menu
Sign in Appearance settings
* Platform
+ AI CODE CREATION
o GitHub Copilot Write better code with AI
o GitHub Copilot app Direct agents from issue to merge
o MCP Registry Integrate external tools
+ DEVELOPER WORKFLOWS
o Actions Automate any workflow
o Codespaces Instant dev environments
o Issues Plan and track work
o Code Review Manage code changes
o Code Quality Enforce quality at merge
+ APPLICATION SECURITY
o GitHub Advanced Security Find and fix vulnerabilities
o Code security Secure your code as you build
o Secret protection Stop leaks before they start
+ EXPLORE
o Why GitHub
o Documentation
o Blog
o Changelog
o Marketplace
View all features
* Solutions
+ BY COMPANY SIZE
o Enterprises
o Small and medium teams
o Startups
o Nonprofits
+ BY USE CASE
o App Modernization
o DevSecOps
o DevOps
o CI/CD
o View all use cases
+ BY INDUSTRY
o Healthcare
o Financial services
o Manufacturing
o Government
o View all industries
View all solutions
* Resources
+ EXPLORE BY TOPIC
o AI
o Software Development
o DevOps
o Security
o View all topics
+ EXPLORE BY TYPE
o Customer stories
o Events & webinars
o Ebooks & reports
o Business insights
o GitHub Skills
+ SUPPORT & SERVICES
o Documentation
o Customer support
o Community forum
o Trust center
o Partners
View all resources
* Open Source
+ COMMUNITY
o GitHub Sponsors Fund open source developers
+ PROGRAMS
o Security Lab
o Maintainer Community
o Accelerator
o GitHub Stars
o Archive Program
+ REPOSITORIES
o Topics
o Trending
o Collections
* Enterprise
+ ENTERPRISE SOLUTIONS
o Enterprise platform AI-powered developer platform
+ AVAILABLE ADD-ONS
o GitHub Advanced Security Enterprise-grade security features
o Copilot for Business Enterprise-grade AI features
o Premium Support Enterprise-grade 24/7 support
* Pricing
Type / to search
Sign in
Sign up Appearance settings
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Uh oh!
There was an error while loading. Please reload this page.
prisma / prisma Public
* Notifications You must be signed in to change notification settings
* Fork 2.5k
* Star 47.6k
* Code
* Issues 2.5k
* Pull requests 61
* Discussions
* Actions
* Projects
* Security and quality 1
* Insights
Additional navigation options
* Code
* Issues
* Pull requests
* Discussions
* Actions
* Projects
* Security and quality
* Insights
main
Branches Tags
Go to file
Code
Open more actions menu
Folders and files
Name Name Last commit message Last commit date
Latest commit
History
8,071 Commits
8,071 Commits
.agents/ rules .agents/ rules
.claude .claude
.cursor .cursor
.github .github
.husky .husky
.vscode .vscode
.zed .zed
apps apps
biome-plugins biome-plugins
docs docs
drive drive
examples examples
images images
packages packages
projects projects
scorecard scorecard
scripts scripts
skills-contrib skills-contrib
skills skills
test test
wip wip
.coderabbit.yml .coderabbit.yml
.gitattributes .gitattributes
.gitignore .gitignore
.gitleaksignore .gitleaksignore
.tool-versions .tool-versions
AGENTS.md AGENTS.md
ARCHITECTURE.md ARCHITECTURE.md
CHANGELOG.md CHANGELOG.md
CLAUDE.md CLAUDE.md
CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md
CONTRIBUTING.md CONTRIBUTING.md
LICENSE LICENSE
README.md README.md
ROADMAP.html ROADMAP.html
ROADMAP.md ROADMAP.md
SECURITY.md SECURITY.md
architecture.config.json architecture.config.json
biome.jsonc biome.jsonc
coverage.config.json coverage.config.json
coverage.config.schema.json coverage.config.schema.json
dependency-cruiser.config.mjs dependency-cruiser.config.mjs
docker-compose.yaml docker-compose.yaml
gotchas.md gotchas.md
lint-staged.config.mjs lint-staged.config.mjs
package.json package.json
pnpm-lock.yaml pnpm-lock.yaml
pnpm-workspace.yaml pnpm-workspace.yaml
rules-footprint.config.schema.json rules-footprint.config.schema.json
scorecard.md scorecard.md
tsconfig.base.json tsconfig.base.json
turbo.json turbo.json
vitest.config.ts vitest.config.ts
View all files
Repository files navigation
*
* README
* Code of conduct
* Contributing
* Apache-2.0 license
* Security
More items
Discord | X | Blog Post | Architecture
Looking for Prisma ORM 7? It lives on the v7 branch of this repository, and the prisma and @prisma/* packages on npm continue to be published from there.
Prisma Next is currently in Early Access and we're building it in the open with the community. APIs will still evolve as your feedback shapes them, so we don't recommend it for production workloads yet. Come along for the ride: star the repo, follow @prisma on X, or read along on the Prisma blog.
Prisma Next is a TypeScript rewrite of Prisma ORM, designed to be extensible, composable, and AI-agent friendly by default. Read the full announcement: The Next Evolution of Prisma ORM.
Prerequisites
* Node.js 24 or newer
* A package manager (npm, pnpm, or yarn)
Getting started
1. Scaffold a new project
The interactive scaffolder picks a JavaScript framework (Next.js, Vite, Hono, and others) and wires Prisma Next in with your chosen database (PostgreSQL or MongoDB):
npm create prisma@next
You finish with a runnable app, a starter contract, and the agent skills already registered.
2. Or, add Prisma Next to an existing project
Run this from your repo root:
npx prisma-next@latest init
prisma-next@latest init writes prisma-next.config.ts, scaffolds a starter contract and db.ts under src/prisma/, installs the runtime, emits the contract, and registers the agent skills. It does not touch your framework or build setup.
3. Use your AI agent for everything Prisma Next
Both installers leave a top-level prisma-next.md primer at your project root for any agent to read first. prisma-next@latest init additionally materialises one SKILL.md per workflow in two places, so different agent runtimes can find them at their expected paths:
* .claude/skills/<skill-name>/SKILL.md — picked up by Claude Code
* .agents/skills/<skill-name>/SKILL.md — universal location for Cursor, Copilot Agent, and other runtimes
A skills-lock.json at the project root tracks which skill versions are installed. Your editor's AI assistant auto-loads the right skill when your prompt matches.
Just describe what you want. For example:
"Add a posts model with a relation to users, then write a query that loads each user's three most recent posts."
The agent loads the prisma-8 skill, opens its contract and queries references, then drives the change end-to-end.
For the full catalogue and what each skill covers, see skills/README.md.
Found a bug, missing a feature, or have a question for the team?
Ask your agent. The prisma-8 skill's feedback flow drafts a structured GitHub issue or hands you a Prisma Discord link for live Q&A. You can review and confirm before anything is submitted.
For extension authors
Prisma Next has a minimal core. Everything around it, including Postgres support itself, is built on the same public SPI that's available to any author. If you've wanted to integrate your tool, your database, or your library with Prisma, this is the way in.
A few extensions already shipping:
* @internal/extension-pgvector: vector columns and similarity operators for semantic search.
* @internal/extension-paradedb: typed BM25 indexes with multiple tokenizers for full-text search.
* @internal/extension-postgis: geospatial types and queries.
* @cipherstash/prisma-next: searchable encryption and data-level access control.
Want to ship your own? The Authoring Prisma Next Extensions blog walks through the SPI, the layers your extension can hook into, and how the team features new extensions in the Prisma Next directory.
Supported databases
Prisma 8 carries PostgreSQL to general availability — and that is all at this stage:
* PostgreSQL — the primary target; general availability at Prisma 8
* MongoDB — early access; proves the framework works beyond SQL
* SQLite — a proof of concept today
MySQL follows later. See the roadmap for what must happen before the 8.0.0-rc.1 release.
Contributing
See CONTRIBUTING.md for setup, commands, DCO signoff, and PR expectations. For substantive changes, please open an issue first so we can give direction-fit feedback before you invest implementation time.
Security issues: follow the Private Vulnerability Reporting flow in SECURITY.md. Please do not file them as public issues.
Community
Built something with Prisma Next? Tag @prisma on X. The best community builds get a shout-out and a link here.
* Discord: Talk to us in Discord in the prisma-next channel
* X: @prisma
* Blog: prisma.io/blog
License
Apache 2.0. See LICENSE.
About
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
www.prisma.io
Topics
cockroachdbdatabasejavascriptloggy-coreloggy-terminalmariadbmongodbmssqlmysqlnodejsormpostgrespostgresqlprismaprisma-clientquery-buildersql-serversqlitesqlservertypescript
Resources
Readme
Apache-2.0 license
Code of conduct
Code of conduct
Contributing
Contributing
Security policy
Security policy
Activity
Custom properties
Stars
47.5k stars
Watchers
333 watching
Forks
2.5k forks
Report repository
Releases
Used by
Contributors
Languages
Footer
© 2026 GitHub, Inc.
Footer navigation
* Terms
* Privacy
* Security
* Status
* Community
* Docs
* Contact
* Manage cookies
* Do not share my personal information
You can’t perform that action at this time.
Por enquanto, as diferenças são realizadas em texto, não graficamente. Apenas o último screenshot está disponível.
Screenshot requer um Fetcher de Conteúdo (Sockpuppetbrowser, selenium, etc) que suporte screenshots.