Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
antd-comment
Advanced tools
The comment UI component build on ant.design
0.1.0
npm install antd-comment
import AntDComment from 'antd-comment';
// the data is from your service
// please look at the data format
// what the view look like is up to the data.
const data = {
currentUser: {
avatar: "https://gw.alipayobjects.com/zos/rmsportal/MPYlfjPImtaHFPOvpBVo.png",
name: 'messi',
link: 'http://taobao.com',
},
// comments data
comments: [
{
author: {
avatar: "https://gw.alipayobjects.com/zos/rmsportal/oFfmyzshSidtkzZZSgea.jpg",
name: 'kobe',
link: 'http://taobao.com',
},
body: '## hello world',
like: [],
top: 0,
replyAuthor: undefined,
createdAt: new Date(),
},
{
author: {
avatar: "https://gw.alipayobjects.com/zos/rmsportal/SJMVsfeiXXnvxvEwgHjy.gif",
name: '罗纳尔多',
link: 'http://taobao.com',
},
body: 'i want to play a game',
like: [],
top: 0,
replyAuthor: undefined,
createdAt: new Date(),
},
{
author: {
avatar: "https://gw.alipayobjects.com/zos/rmsportal/NCRZHCzKeqkcBaKXDPZb.jpg",
name: 'jordan',
link: 'http://taobao.com',
},
body: '今天晚上去打篮球不',
like: [],
top: 0,
replyAuthor: {
avatar: "https://gw.alipayobjects.com/zos/rmsportal/SJMVsfeiXXnvxvEwgHjy.gif",
name: '罗纳尔多',
link: 'http://taobao.com',
},
createdAt: new Date('2017-06-23'),
}
],
// pagination data
pagination: {
total: 276,
current: 1,
pageSize: 20,
},
// show the more btn
more: true,
}
const App = ()=> <div>
<AntDComment
data={data}
onComment={()=>{}}
onDeleteComment={()=>{}}
onTop={()=>{}}
onLike={()=>{}}
onGetMore={()=>{}}
/>
</div>
FAQs
The comment UI component build on ant.design
The npm package antd-comment receives a total of 4 weekly downloads. As such, antd-comment popularity was classified as not popular.
We found that antd-comment demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.